]> git.saurik.com Git - wxWidgets.git/commitdiff
use full path to headers in header guards
authorVáclav Slavík <vslavik@fastmail.fm>
Mon, 21 Jan 2008 11:56:15 +0000 (11:56 +0000)
committerVáclav Slavík <vslavik@fastmail.fm>
Mon, 21 Jan 2008 11:56:15 +0000 (11:56 +0000)
git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@51305 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775

include/wx/meta/convertible.h
include/wx/meta/int2type.h

index 5a826bc2571c2976f81bfe3df433d718d4824fcb..99207d7273dcbf8a0884de8db2579f2d4c9f6632 100644 (file)
@@ -8,8 +8,8 @@
 // Licence:     wxWindows licence
 /////////////////////////////////////////////////////////////////////////////
 
-#ifndef _WX_CONVERTIBLE_H_
-#define _WX_CONVERTIBLE_H_
+#ifndef _WX_META_CONVERTIBLE_H_
+#define _WX_META_CONVERTIBLE_H_
 
 // Helper to decide if an object of type D is convertible to type B (the test
 // succeeds in particular when D derives from B)
@@ -22,5 +22,5 @@ struct wxConvertibleTo
     enum { value = sizeof(Match(static_cast<D*>(NULL))) == sizeof(char) };
 };
 
-#endif // _WX_CONVERTIBLE_H_
+#endif // _WX_META_CONVERTIBLE_H_
 
index abefe6392635b48b8a31f713dce4f44887ac4bce..1f18ced67aa703f0c0b462560232684f74d7b86b 100644 (file)
@@ -8,10 +8,10 @@
 // Licence:     wxWindows licence
 /////////////////////////////////////////////////////////////////////////////
 
-#ifndef _WX_INT2TYPE_H_
-#define _WX_INT2TYPE_H_
+#ifndef _WX_META_INT2TYPE_H_
+#define _WX_META_INT2TYPE_H_
 
 template <int N>
 struct wxInt2Type { enum { value=N }; };
 
-#endif // _WX_INT2TYPE_H_
+#endif // _WX_META_INT2TYPE_H_