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:
Václav Slavík
2008-01-21 11:56:15 +00:00
parent d9a4fe17c8
commit 4f927337cc
2 changed files with 6 additions and 6 deletions

View 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_