[Bf-blender-cvs] [c52e381c8b3] functions: Add license header

Jacques Lucke noreply at git.blender.org
Fri Aug 23 17:35:39 CEST 2019


Commit: c52e381c8b324d4c30cf1f13fffe34ad43294731
Author: Jacques Lucke
Date:   Fri Aug 23 16:06:07 2019 +0200
Branches: functions
https://developer.blender.org/rBc52e381c8b324d4c30cf1f13fffe34ad43294731

Add license header

===================================================================

M	source/blender/blenlib/BLI_set.hpp

===================================================================

diff --git a/source/blender/blenlib/BLI_set.hpp b/source/blender/blenlib/BLI_set.hpp
index 2142ba3235d..82c24514d85 100644
--- a/source/blender/blenlib/BLI_set.hpp
+++ b/source/blender/blenlib/BLI_set.hpp
@@ -1,3 +1,25 @@
+/*
+ * This program is free software; you can redistribute it and/or
+ * modify it under the terms of the GNU General Public License
+ * as published by the Free Software Foundation; either version 2
+ * of the License, or (at your option) any later version.
+ *
+ * This program is distributed in the hope that it will be useful,
+ * but WITHOUT ANY WARRANTY; without even the implied warranty of
+ * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
+ * GNU General Public License for more details.
+ *
+ * You should have received a copy of the GNU General Public License
+ * along with this program; if not, write to the Free Software Foundation,
+ * Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA.
+ */
+
+/** \file
+ * \ingroup bli
+ *
+ * This file provides a set implementation that uses open addressing with probing.
+ */
+
 #pragma once
 
 #include "BLI_hash.hpp"



More information about the Bf-blender-cvs mailing list