|
Boost-Commit : |
Subject: [Boost-commit] svn:boost r62673 - trunk/libs/date_time/test
From: andrey.semashev_at_[hidden]
Date: 2010-06-09 13:35:17
Author: andysem
Date: 2010-06-09 13:35:16 EDT (Wed, 09 Jun 2010)
New Revision: 62673
URL: http://svn.boost.org/trac/boost/changeset/62673
Log:
Added inline qualifiers. Refs. #3647.
Text files modified:
trunk/libs/date_time/test/testfrmwk.hpp | 6 +++---
1 files changed, 3 insertions(+), 3 deletions(-)
Modified: trunk/libs/date_time/test/testfrmwk.hpp
==============================================================================
--- trunk/libs/date_time/test/testfrmwk.hpp (original)
+++ trunk/libs/date_time/test/testfrmwk.hpp 2010-06-09 13:35:16 EDT (Wed, 09 Jun 2010)
@@ -34,14 +34,14 @@
}
out << std::endl;
}
-private:
+private:
TestStats() : testcount_(0), passcount_(0) {}
unsigned int testcount_;
unsigned int passcount_;
};
-bool check(const std::string& testname, bool testcond)
+inline bool check(const std::string& testname, bool testcond)
{
TestStats& stat = TestStats::instance();
if (testcond) {
@@ -79,7 +79,7 @@
}
#endif
-int printTestStats()
+inline int printTestStats()
{
TestStats& stat = TestStats::instance();
stat.print();
Boost-Commit list run by bdawes at acm.org, david.abrahams at rcn.com, gregod at cs.rpi.edu, cpdaniel at pacbell.net, john at johnmaddock.co.uk