Skip to content

Commit

Permalink
Clang is more picky about noexcept specification
Browse files Browse the repository at this point in the history
  • Loading branch information
markummitchell-tu committed Mar 6, 2019
1 parent 5923234 commit e63e84a
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion dev/osx/build_installable_package
Original file line number Diff line number Diff line change
Expand Up @@ -62,7 +62,7 @@ if [ ! -f /usr/lib/liblog4cpp.1.dylib ]; then
fi

# Make into Engauge Digitizer.app
qmake engauge.pro
qmake engauge.pro CONFIG+=log4cpp_null
make clean
make

Expand Down
2 changes: 1 addition & 1 deletion src/log4cpp_null/include/log4cpp/Category.hh
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@ namespace log4cpp
class Category
{
public:
Category();
Category() noexcept;
virtual ~Category();

/// Noop method to add an Appender
Expand Down
2 changes: 1 addition & 1 deletion src/log4cpp_null/src/Category.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ namespace log4cpp {

Category *Category::m_category = 0;

Category::Category()
Category::Category() noexcept
{
}

Expand Down

0 comments on commit e63e84a

Please sign in to comment.