diff options
author | Vinson Lee <vlee@vmware.com> | 2011-03-14 09:51:41 -0700 |
---|---|---|
committer | Vinson Lee <vlee@vmware.com> | 2011-03-14 09:51:41 -0700 |
commit | 23b85db68c50889c9352342f9ffcbb8f520f9eec (patch) | |
tree | 1ff3eb30cf82e95d6574aaa9c28000e02da7547a | |
parent | f13772134a2666398a77cc9707bb2a72a85ae1b6 (diff) |
glean/pixelFormats: s/__func__/__FUNCTION__/
__func__ is not available on MSVC.
-rw-r--r-- | tests/glean/tpixelformats.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/tests/glean/tpixelformats.cpp b/tests/glean/tpixelformats.cpp index 60f4825c..50283774 100644 --- a/tests/glean/tpixelformats.cpp +++ b/tests/glean/tpixelformats.cpp @@ -43,7 +43,7 @@ // Maybe add fragment program path as a 3rd envMode (below) someday. #define USE_FRAG_PROG 0 -#define abort() do { printf("%s:%i\n", __func__, __LINE__); abort(); } while (0) +#define abort() do { printf("%s:%i\n", __FUNCTION__, __LINE__); abort(); } while (0) namespace GLEAN { |