From 1bf09c8b5f7118e57dd63eed0e8c2c6da4daccd1 Mon Sep 17 00:00:00 2001 From: Zane Kaminski Date: Mon, 31 May 2021 00:39:52 -0400 Subject: [PATCH] #include 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. --- Rez/RezLexerNextToken.cc | 1 + 1 file changed, 1 insertion(+) diff --git a/Rez/RezLexerNextToken.cc b/Rez/RezLexerNextToken.cc index fb69bd21b0..8cc46681ec 100644 --- a/Rez/RezLexerNextToken.cc +++ b/Rez/RezLexerNextToken.cc @@ -2,6 +2,7 @@ #include "RezLexerWaveToken.h" #include "RezParser.generated.hh" #include +#include #include