#include <sstream> in RezLexerNextToken.cc

Fixes bug building on macOS 11.3.1 and boost 1.76.0. Evidently sstream was previously included in another header referenced by this file but now is not. The new include directive allows the project to build.
This commit is contained in:
Zane Kaminski 2021-05-31 00:39:52 -04:00
parent 8d32c583ae
commit 1bf09c8b5f
1 changed files with 1 additions and 0 deletions

View File

@ -2,6 +2,7 @@
#include "RezLexerWaveToken.h"
#include "RezParser.generated.hh"
#include <unordered_map>
#include <sstream>
#include <boost/regex.hpp>