|
From: susumu.yata <nul...@cl...> - 2013-04-16 04:44:33
|
susumu.yata 2013-04-16 13:29:55 +0900 (Tue, 16 Apr 2013) New Revision: 173fb77b44161673e6fa141aa0603c8ff32fbe3d https://github.com/clear-code/cutter/commit/173fb77b44161673e6fa141aa0603c8ff32fbe3d Message: Add forward declaration of std::type_info gcc implicitly declares std::type_info, while clang does not. Modified files: cppcutter/cppcut-assertions-helper.h Modified: cppcutter/cppcut-assertions-helper.h (+5 -0) =================================================================== --- cppcutter/cppcut-assertions-helper.h 2013-04-13 15:28:50 +0900 (4549615) +++ cppcutter/cppcut-assertions-helper.h 2013-04-16 13:29:55 +0900 (8a63ada) @@ -25,6 +25,11 @@ #include <cutter/cut-helper.h> #include <cppcutter/cppcut-macros.h> +namespace std +{ + class type_info; +} + namespace cut { CPPCUT_DECL |