Fix build with Visual Studio 2013
Add #include <cstdint> to src/utils/context_free_grammar_generator.hpp. It appears that without it, uint32_t ends up being different types in the header and the implementation file (at least in Visual Studio 2013), which makes the compiler complain that the print_nonterminal() function hasn't been declared.
This commit is contained in:
parent
febf4f3d3c
commit
b640c82f74
1 changed files with 1 additions and 0 deletions
|
@ -21,6 +21,7 @@
|
|||
#include <map>
|
||||
#include <list>
|
||||
#include <vector>
|
||||
#include <cstdint>
|
||||
|
||||
class context_free_grammar_generator : public name_generator
|
||||
{
|
||||
|
|
Loading…
Add table
Reference in a new issue