From: Václav Slavík Date: Mon, 21 Jan 2008 11:56:15 +0000 (+0000) Subject: use full path to headers in header guards X-Git-Url: https://git.saurik.com/wxWidgets.git/commitdiff_plain/4f927337ccac8e2fc64a5286472d43954248b853 use full path to headers in header guards git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@51305 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775 --- diff --git a/include/wx/meta/convertible.h b/include/wx/meta/convertible.h index 5a826bc257..99207d7273 100644 --- a/include/wx/meta/convertible.h +++ b/include/wx/meta/convertible.h @@ -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(NULL))) == sizeof(char) }; }; -#endif // _WX_CONVERTIBLE_H_ +#endif // _WX_META_CONVERTIBLE_H_ diff --git a/include/wx/meta/int2type.h b/include/wx/meta/int2type.h index abefe63926..1f18ced67a 100644 --- a/include/wx/meta/int2type.h +++ b/include/wx/meta/int2type.h @@ -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 struct wxInt2Type { enum { value=N }; }; -#endif // _WX_INT2TYPE_H_ +#endif // _WX_META_INT2TYPE_H_