summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--icespider/fcgi/cgiRequest.h4
1 files changed, 2 insertions, 2 deletions
diff --git a/icespider/fcgi/cgiRequest.h b/icespider/fcgi/cgiRequest.h
index 1784932..2282334 100644
--- a/icespider/fcgi/cgiRequest.h
+++ b/icespider/fcgi/cgiRequest.h
@@ -10,7 +10,7 @@ namespace IceSpider {
public:
CgiRequest(Core * c, int argc, char ** argv, char ** env);
- std::istream & getInputStream() const override;
- std::ostream & getOutputStream() const override;
+ [[nodiscard]] std::istream & getInputStream() const override;
+ [[nodiscard]] std::ostream & getOutputStream() const override;
};
}