bricks: add missing override

* bricks/brick-assert.h, bricks/brick-hashset.h,
bricks/brick-shmem.h: here.
This commit is contained in:
Etienne Renault 2016-09-29 15:26:42 +02:00
parent 50d888adf8
commit c515ee92e2
3 changed files with 5 additions and 5 deletions

View file

@ -132,7 +132,7 @@ struct AssertFailed : std::exception {
(*this) << ": assertion `" << l.stmt << "' failed;";
}
const char *what() const noexcept { return str.c_str(); }
const char *what() const noexcept override { return str.c_str(); }
};
template< typename Location, typename X >