You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
writer.write("// Note: constexpr string_view excessively bloats compile times due to length counts.")
875
880
writer.write(
876
881
"// Note: Plotly JS is chunked into multiple raw string literals to support MSVC limits, and 0x1a characters are escaped to avoid MSVC trating them as EOF."
Copy file name to clipboardExpand all lines: include/plotlypp/plotly_min_js.hpp
+7Lines changed: 7 additions & 0 deletions
Original file line number
Diff line number
Diff line change
@@ -8,8 +8,13 @@
8
8
9
9
#pragma once
10
10
11
+
#include <plotlypp/warnings.hpp>
12
+
11
13
namespace plotlypp {
12
14
15
+
PLOTLYPP_DISABLE_WARNING_PUSH
16
+
PLOTLYPP_DISABLE_WARNING_OVERLENGTH_STRINGS
17
+
13
18
// Note: constexpr string_view excessively bloats compile times due to length counts.
14
19
// Note: Plotly JS is chunked into multiple raw string literals to support MSVC limits, and 0x1a characters are escaped to avoid MSVC trating them as EOF.
0 commit comments