Skip to content

Commit fc756e8

Browse files
committed
Default ctor now calls private one
1 parent a41f8b1 commit fc756e8

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/ESPAsyncWebServer.h

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -776,7 +776,7 @@ class AsyncURIMatcher {
776776
static constexpr uint16_t CaseInsensitive = (1 << 0);
777777

778778
// public constructors
779-
AsyncURIMatcher() : _flags(intptr_t(Type::None)) {}
779+
AsyncURIMatcher() : AsyncURIMatcher({}, Type::None, None) {}
780780
AsyncURIMatcher(String uri, uint16_t modifiers = None) : AsyncURIMatcher(std::move(uri), Type::Auto, modifiers) {}
781781
AsyncURIMatcher(const char *uri, uint16_t modifiers = None) : AsyncURIMatcher(String(uri), Type::Auto, modifiers) {}
782782

0 commit comments

Comments
 (0)