remove unused variables

quell warnings
This commit is contained in:
Arne Morten Kvarving
2019-06-17 09:08:47 +02:00
parent 87d13c24f1
commit 2c82787ee9
2 changed files with 1 additions and 5 deletions

View File

@@ -38,7 +38,6 @@ namespace {
constexpr ParserItem::itype INT = ParserItem::itype::INT;
constexpr ParserItem::itype STRING= ParserItem::itype::STRING;
constexpr ParserItem::itype RAW_STRING = ParserItem::itype::RAW_STRING;
constexpr ParserItem::itype DOUBLE = ParserItem::itype::DOUBLE;
@@ -960,9 +959,6 @@ BOOST_AUTO_TEST_CASE(ParserDoubleItemGetDimension) {
BOOST_CHECK_THROW( doubleItem.getDimension( 3 ) , std::out_of_range );
}
const static auto SINGLE = ParserItem::item_size::SINGLE;
const static auto ALL = ParserItem::item_size::ALL;
BOOST_AUTO_TEST_CASE(DefaultConstructor_NoParams_NoThrow) {
BOOST_CHECK_NO_THROW(ParserRecord record);
}