Skip to content

Commit

Permalink
Removed inline warning in arm-none-eabi-gcc 6.2
Browse files Browse the repository at this point in the history
  • Loading branch information
Tymoteusz Blazejczyk committed Feb 18, 2017
1 parent f807c37 commit 4a339ac
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions include/utest/test_assert.hpp
Expand Up @@ -258,15 +258,15 @@ TestAssert::operator<<(T value) noexcept -> TestAssert& {
return operator<<(double(value));
}

template<typename T> inline auto
template<typename T> auto
TestAssert::is_true(const T& value) noexcept -> TestAssert& {
if (!value) {
report_is_true({value});
}
return *this;
}

template<typename T> inline auto
template<typename T> auto
TestAssert::is_false(const T& value) noexcept -> TestAssert& {
if (!!value) {
report_is_false({value});
Expand Down

0 comments on commit 4a339ac

Please sign in to comment.