From 224e50a2bdfce01d813075b422f093e00c11d45c Mon Sep 17 00:00:00 2001 From: cignoni Date: Sun, 2 Dec 2007 10:06:47 +0000 Subject: [PATCH] Added missing include guards --- vcg/math/point_matching.h | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/vcg/math/point_matching.h b/vcg/math/point_matching.h index 5ee4e4ec..37390812 100644 --- a/vcg/math/point_matching.h +++ b/vcg/math/point_matching.h @@ -27,8 +27,11 @@ $Log: point_matching.h,v $ ****************************************************************************/ +#ifndef _VCG_MATH_POINTMATCHING_H +#define _VCG_MATH_POINTMATCHING_H #include +#include #include namespace vcg { @@ -529,3 +532,5 @@ static bool ComputeMatchMatrix2( Matrix44x &res, */ }; } // end namespace + +#endif