Skip to content

Commit

Permalink
Remove unused directives
Browse files Browse the repository at this point in the history
  • Loading branch information
lballabio committed Oct 5, 2020
1 parent a2b2e8d commit 0e64cfa
Showing 1 changed file with 0 additions and 3 deletions.
3 changes: 0 additions & 3 deletions ql/tuple.hpp
Expand Up @@ -30,7 +30,6 @@
#include <tuple>
#else
#include <boost/tuple/tuple.hpp>
#include <boost/move/move.hpp>
#endif

namespace QuantLib {
Expand All @@ -41,12 +40,10 @@ namespace QuantLib {
using std::tuple; // NOLINT(misc-unused-using-decls)
using std::make_tuple; // NOLINT(misc-unused-using-decls)
using std::get; // NOLINT(misc-unused-using-decls)
using std::forward; // NOLINT(misc-unused-using-decls)
#else
using boost::tuple; // NOLINT(misc-unused-using-decls)
using boost::make_tuple; // NOLINT(misc-unused-using-decls)
using boost::get; // NOLINT(misc-unused-using-decls)
using boost::forward; // NOLINT(misc-unused-using-decls)
#endif

}
Expand Down

0 comments on commit 0e64cfa

Please sign in to comment.