*: add "noexcept" to many, many function prototypes
This eliminates some overhead, because the compiler doesn't need to consider these functions throwing.
This commit is contained in:
@@ -32,7 +32,7 @@ public:
|
||||
}
|
||||
|
||||
/* virtual methods from InputStream */
|
||||
bool IsEOF() override {
|
||||
bool IsEOF() noexcept override {
|
||||
return remaining == 0;
|
||||
}
|
||||
|
||||
|
Reference in New Issue
Block a user