1
0
Fork 0
mirror of https://github.com/bolero-MURAKAMI/Sprout synced 2025-08-03 12:49:50 +00:00

fix for clang3.4.2

This commit is contained in:
bolero-MURAKAMI 2014-07-30 19:23:33 +09:00
parent 3df16007a5
commit 3d89eae1e9
2 changed files with 15 additions and 6 deletions

View file

@ -9,9 +9,10 @@
#define SPROUT_WORKAROUND_STD_CSTDDEF_HPP
#include <sprout/config.hpp>
#include <sprout/detail/predef.hpp>
#if defined(__clang__) && defined(__GLIBCXX__)
# if (__clang_major__ < 3 || (__clang_major__ == 3 && __clang_minor__ < 5)) && (__GLIBCXX__ >= 20140422)
# if SPROUT_CLANG_EARLIER(3, 4, 2) && (__GLIBCXX__ >= 20140422)
# include <stddef.h>
#
# if defined(__STDDEF_H)