Welcome to mirror list, hosted at ThFree Co, Russian Federation.

git.blender.org/blender.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
Diffstat (limited to 'source/blender/freestyle/intern/geometry/BBox.h')
-rw-r--r--source/blender/freestyle/intern/geometry/BBox.h4
1 files changed, 4 insertions, 0 deletions
diff --git a/source/blender/freestyle/intern/geometry/BBox.h b/source/blender/freestyle/intern/geometry/BBox.h
index 57c073df84a..8220bc6c65b 100644
--- a/source/blender/freestyle/intern/geometry/BBox.h
+++ b/source/blender/freestyle/intern/geometry/BBox.h
@@ -28,6 +28,8 @@
* \date 22/05/2003
*/
+namespace Freestyle {
+
template <class Point>
class BBox
{
@@ -144,4 +146,6 @@ BBox<Point>& operator+(const BBox<Point> &b1, const BBox<Point> &b2)
return BBox<Point>(new_min, new_max);
}
+} /* namespace Freestyle */
+
#endif // __BBOX_H__