From badc334f21abfab5d038e99738d002b62d3b3952 Mon Sep 17 00:00:00 2001 From: David Capello Date: Thu, 14 Aug 2014 23:37:20 -0300 Subject: [PATCH] Fix include guard (detected by clang) --- src/app/tools/point_shape.h | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/app/tools/point_shape.h b/src/app/tools/point_shape.h index d96fbd4ac..bc672a0c9 100644 --- a/src/app/tools/point_shape.h +++ b/src/app/tools/point_shape.h @@ -16,7 +16,7 @@ * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA */ -#ifndef APP_TOOLS_TOOL_POINT_SHAPE_INCLUDED +#ifndef APP_TOOLS_TOOL_POINT_SHAPE_H_INCLUDED #define APP_TOOLS_TOOL_POINT_SHAPE_H_INCLUDED #pragma once @@ -44,4 +44,4 @@ namespace app { } // namespace tools } // namespace app -#endif // TOOLS_INK_H_INCLUDED +#endif // APP_TOOLS_TOOL_POINT_SHAPE_H_INCLUDED