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
This commit is contained in:
@@ -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_
|
||||
|
||||
|
@@ -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_
|
||||
|
Reference in New Issue
Block a user