summaryrefslogtreecommitdiffhomepage
path: root/dev/lib/net
diff options
context:
space:
mode:
authorAmlal <amlal@nekernel.org>2025-08-15 12:09:28 +0200
committerAmlal <amlal@nekernel.org>2025-08-15 12:09:28 +0200
commit70945244a35e0e6d2a2e0f84ae83f31b9898a0ca (patch)
tree2bf642b31c914a36c36f10b20ea5189ca3c47c09 /dev/lib/net
parent37bc0133c137cdf7fe62e79ac8208ec46096316e (diff)
feat: new hpptest and gtest module. Other module improvements.
Signed-off-by: Amlal <amlal@nekernel.org>
Diffstat (limited to 'dev/lib/net')
-rw-r--r--dev/lib/net/url.hpp16
1 files changed, 8 insertions, 8 deletions
diff --git a/dev/lib/net/url.hpp b/dev/lib/net/url.hpp
index 496889c..f6dba95 100644
--- a/dev/lib/net/url.hpp
+++ b/dev/lib/net/url.hpp
@@ -51,14 +51,14 @@ namespace snu::net
return *this;
}
- explicit operator bool()
- {
- return this->is_valid();
- }
+ explicit operator bool()
+ {
+ return this->is_valid();
+ }
- bool is_valid()
- {
- return ss_.size() > 0;
- }
+ bool is_valid()
+ {
+ return ss_.size() > 0;
+ }
};
} // namespace snu::net