Fix OSX compatibility issue

This commit is contained in:
Jonathan Müller 2017-04-21 12:36:01 +02:00
commit fa8ee81b36

View file

@ -111,12 +111,12 @@ namespace cppast
/// Tag type to represent an end-of-line character.
const struct newl_t
{
} newl;
} newl{};
/// Tag type to represent a single space character.
const struct whitespace_t
{
} whitespace;
} whitespace{};
/// Base class to control the code generation.
///