From ca943c65dc15427e040d4138bf0dfd562c1891e7 Mon Sep 17 00:00:00 2001 From: dmatetelki Date: Mon, 4 Jan 2016 10:20:51 +0100 Subject: [PATCH] removing leftover code from the noexcept run --- lib/graph/graph.hpp | 11 ----------- 1 file changed, 11 deletions(-) diff --git a/lib/graph/graph.hpp b/lib/graph/graph.hpp index 6e38cd8..26649eb 100644 --- a/lib/graph/graph.hpp +++ b/lib/graph/graph.hpp @@ -27,17 +27,6 @@ } ~~~ */ - - -// from http://cpptruths.blogspot.de/2011/09/tale-of-noexcept-swap-for-user-defined.html -template -struct is_nothrow_swappable_all -{ - static std::tuple *t; - enum { value = noexcept(t->swap(*t)) }; -}; - - template class Graph {