Fix various warnings, e.g. remove unused variables, etc.

This commit is contained in:
Adam Wulkiewicz
2021-07-05 14:15:09 +02:00
parent 6f31aeee3a
commit ebbc58b52e
12 changed files with 49 additions and 37 deletions

View File

@@ -3,8 +3,8 @@
// Copyright (c) 2014-2015 Adam Wulkiewicz, Lodz, Poland.
// This file was modified by Oracle on 2020.
// Modifications copyright (c) 2020 Oracle and/or its affiliates.
// This file was modified by Oracle on 2020-2021.
// Modifications copyright (c) 2020-2021 Oracle and/or its affiliates.
// Contributed and/or modified by Adam Wulkiewicz, on behalf of Oracle
// Use, modification and distribution is subject to the Boost Software License,
@@ -237,7 +237,7 @@ void test_sanity_check()
V v = boost::assign::list_of(P(1, 1))(P(2, 2))(P(3, 3));
//v = boost::assign::list_of(P(1, 1))(P(2, 2))(P(3, 3));
v.empty();
//v.empty();
}
}