mirror of
https://gitlab.com/OpenMW/openmw.git
synced 2025-02-20 15:40:32 +00:00
Fix build with clang and libc++
libc++ does not have such function: apps/openmw_test_suite/esm3/testesmwriter.cpp:73:30: error: no member named 'view' in 'std::ostringstream' EXPECT_EQ(stream.view().size(), size); ~~~~~~ ^
This commit is contained in:
parent
ebb5820dd1
commit
aa77e727b8
@ -70,7 +70,7 @@ namespace ESM
|
||||
writer.writeHRefId(refId);
|
||||
}
|
||||
|
||||
EXPECT_EQ(stream.view().size(), size);
|
||||
EXPECT_EQ(stream.str().size(), size);
|
||||
}
|
||||
|
||||
const std::vector<std::pair<RefId, std::size_t>> refIdSizes = {
|
||||
|
Loading…
x
Reference in New Issue
Block a user