We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 970fee0 commit 7f21786Copy full SHA for 7f21786
1 file changed
CMakeLists.txt
@@ -660,6 +660,14 @@ SET (PBRT_UTIL_SOURCE
660
src/pbrt/util/vecmath.cpp
661
)
662
663
+# A warning about a deprecated function in C++17 but the solution will only be
664
+# in C++26.
665
+set_source_files_properties(
666
+ src/pbrt/util/string.cpp
667
+ PROPERTIES
668
+ COMPILE_FLAGS "-Wno-deprecated-declarations"
669
+)
670
+
671
SET (PBRT_UTIL_SOURCE_HEADERS
672
src/pbrt/util/args.h
673
src/pbrt/util/bluenoise.h
0 commit comments