Reputation: 4283
Visual Studio alredy has not implemented constexpr. Was the best way to refactor this:
constexpr auto DEBUG_FONT = "mydebugfont.ttf";
into a valid line in Visual Studio?
Upvotes: 0
Views: 245
Reputation: 2003
I'd use:
const char DEBUG_FONT[] = "mydebugfont.ttf";
Upvotes: 1