Commits


Konstantin Varlamov authored and GitHub committed 2ed9f9ecc59
Fix compilation with older versions of Visual Studio (#4398) Looks like Visual Studio 2015 has trouble with `constexpr` arrays: ```cpp constexpr char Foo[] = "abc"; ``` but not with `constexpr` pointers to `char`: ```cpp constexpr const char* Foo = "abc"; ```