Commit 2d1493ed authored by Max Kellermann's avatar Max Kellermann

lib/curl/Init: add `noexcept`

parent 43677d57
......@@ -50,11 +50,11 @@ public:
CurlInit(const CurlInit &) = delete;
CurlInit &operator=(const CurlInit &) = delete;
CurlGlobal &operator*() {
CurlGlobal &operator*() noexcept {
return *instance;
}
CurlGlobal *operator->() {
CurlGlobal *operator->() noexcept {
return instance;
}
};
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment