(svn r27654) -Change: Enable C++11 for clang 3.3 (LordAro)

This commit is contained in:
frosch
2016-09-05 19:11:01 +00:00
parent f286ba8db2
commit 533cb7c156
2 changed files with 7 additions and 2 deletions

View File

@@ -17,7 +17,7 @@
#define NIP_END() { NULL, 0, 0, 0, 0 }
/* Helper for filling callback tables */
#define NIC(cb_id, base, variable, bit) { #cb_id, cpp_offsetof(base, variable), cpp_sizeof(base, variable), bit, cb_id }
#define NIC(cb_id, base, variable, bit) { #cb_id, (ptrdiff_t)cpp_offsetof(base, variable), cpp_sizeof(base, variable), bit, cb_id }
#define NIC_END() { NULL, 0, 0, 0, 0 }
/* Helper for filling variable tables */