Hello there,
is there anyone out there who had success building and using this with Visual Studio 2015?
I get compiler errors where the vc compiler is not happy with some of the template code:
Options<D>::optionOr(
const String& key, /**< The key to search under. */
T&& fallback /**< The fallback value to return if the key was
not found. */
)
Error C2061 syntax error: identifier 'ValueTypeOf<`template-type-parameter-1'>' cppwamp c:\git\wampcpp\cppwamp\cppwamp\include\cppwamp\internal\options.ipp 66
template <typename D>
Options<D>::Options() {}
Error C2143 syntax error: missing ';' before '{' cppwamp c:\git\wampcpp\cppwamp\cppwamp\include\cppwamp\internal\options.ipp 80
Error C2447 '{': missing function header (old-style formal list?) cppwamp c:\git\wampcpp\cppwamp\cppwamp\include\cppwamp\internal\options.ipp 80
Before I go in there and change code I wanted to ask if someone else had the same problems. I am willing to create a pull request once I got it working. I can't really check if I break anything for the other compilers though.
Best regards,
Dieter