Skip to content

Commit 40a420a

Browse files
committed
Add necessary includes
Insert a few missing include statements.
1 parent 964eb3e commit 40a420a

3 files changed

Lines changed: 3 additions & 0 deletions

File tree

src/values/primitive.cxx

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -9,6 +9,7 @@ module;
99
#include <cmath>
1010
#include <cstdint> // for uint32_t and int32_t
1111
#include <limits>
12+
#include <sstream>
1213
#include <stdexcept>
1314

1415
#include "type.hpp"

src/values/raytrace/shader-binding-table.cxx

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -4,6 +4,7 @@
44
* file, You can obtain one at https://mozilla.org/MPL/2.0/.
55
*/
66
module;
7+
#include <sstream>
78
#include <string>
89
#include <vector>
910

src/values/type.cpp

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -6,6 +6,7 @@
66
#include "type.hpp"
77

88
#include <cassert>
9+
#include <sstream>
910
#include <stdexcept>
1011
#include <vector>
1112

0 commit comments

Comments
 (0)