File tree Expand file tree Collapse file tree 3 files changed +3
-3
lines changed
Expand file tree Collapse file tree 3 files changed +3
-3
lines changed Original file line number Diff line number Diff line change @@ -9,7 +9,7 @@ DESATOMAT := /www/root/desatomat/console/desatomat.php
99
1010CPP_STANDARD := $(shell ./cpp-20-check.sh $(CXX ) )
1111
12- CXXFLAGS := $(CPP_STANDARD ) -Iinclude -O3 -pedantic -Wall -Wextra
12+ override CXXFLAGS := $( CXXFLAGS ) $(CPP_STANDARD ) -Iinclude -O3 -pedantic -Wall -Wextra
1313LDFLAGS := -lre2 -lboost_regex -lpcre2-8
1414
1515TESTS := $(wildcard tests/* .cpp) $(wildcard tests/benchmark/* .cpp)
Original file line number Diff line number Diff line change @@ -173,7 +173,7 @@ template <size_t N> class fixed_string {
173173template <> class fixed_string <0 > {
174174 static constexpr char32_t __empty[1 ] = {0 };
175175public:
176- template <typename T> constexpr fixed_string (const T (&)[] ) noexcept {
176+ template <typename T> constexpr fixed_string (const T * ) noexcept {
177177
178178 }
179179 constexpr fixed_string (std::initializer_list<char32_t >) noexcept {
Original file line number Diff line number Diff line change @@ -408,7 +408,7 @@ template <size_t N> class fixed_string {
408408template <> class fixed_string <0 > {
409409 static constexpr char32_t __empty[1 ] = {0 };
410410public:
411- template <typename T> constexpr fixed_string (const T (&)[] ) noexcept {
411+ template <typename T> constexpr fixed_string (const T * ) noexcept {
412412
413413 }
414414 constexpr fixed_string (std::initializer_list<char32_t >) noexcept {
You can’t perform that action at this time.
0 commit comments