Skip to content

Commit

Permalink
SERVER-19720 add missing BOOST_NOEXCEPT to fix MSVC
Browse files Browse the repository at this point in the history
  • Loading branch information
amidvidy committed Aug 13, 2015
1 parent 7c80890 commit 7de54a8
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/mongo/base/system_error.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -44,7 +44,7 @@ class MongoErrorCategoryImpl final : public std::error_category {
public:
MongoErrorCategoryImpl() = default;

const char* name() const noexcept override {
const char* name() const BOOST_NOEXCEPT override {
return "mongo";
}

Expand Down

0 comments on commit 7de54a8

Please sign in to comment.