Merge pull request #186 from CrowCpp/version_fix

Fixed multiple files issue
This commit is contained in:
Farook Al-Sammarraie 2021-08-05 19:48:18 +03:00 committed by GitHub
commit 2b1a071e49
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -3,8 +3,8 @@
namespace crow {
#ifdef CROW_MAIN
constexpr char VERSION[] = "master";
char VERSION[] = "master";
#else
extern constexpr char VERSION[];
extern char VERSION[];
#endif
}