Fix broken Intellisense (MSVC)

Fix #213
This commit is contained in:
Vinnie Falco
2016-12-30 09:37:41 -05:00
parent a5d063d5b9
commit f70ac4cb86
2 changed files with 15 additions and 1 deletions

View File

@ -1,3 +1,15 @@
1.0.0-b22
* Fix broken Intellisense
--------------------------------------------------------------------------------
1.0.0-b21
* Remove extraneous includes
--------------------------------------------------------------------------------
1.0.0-b20
ZLib
@ -10,7 +22,6 @@ API Changes:
--------------------------------------------------------------------------------
>>>>>>> b89fede... Add zlib module:
1.0.0-b19
* Boost library min/max guidance

View File

@ -61,6 +61,8 @@ struct is_call_possible_udt3
int operator()(int);
};
#ifndef __INTELLISENSE__
// VFALCO Fails to compile with Intellisense
static_assert(is_call_possible<
is_call_possible_udt1, void(int)>::value, "");
@ -81,6 +83,7 @@ static_assert(is_call_possible<
static_assert(! is_call_possible<
is_call_possible_udt3 const, int(int)>::value, "");
#endif
} // test