Commit bce1a797 authored by Jakub Klinkovský's avatar Jakub Klinkovský
Browse files

Replaced assert with NotImplementedError in tnl-diff

parent 29f63f83
Loading
Loading
Loading
Loading
+2 −1
Original line number Diff line number Diff line
@@ -17,6 +17,7 @@
#include <TNL/Containers/Vector.h>
#include <TNL/Containers/StaticVector.h>
#include <TNL/Functions/MeshFunction.h>
#include <TNL/Exceptions/NotImplementedError.h>

using namespace TNL;

@@ -33,7 +34,7 @@ class ExactMatchTest
                       std::fstream& outputFile,
                       bool verbose = false)
      {
         TNL_ASSERT( false, "Not implemented yet." );
         throw Exceptions::NotImplementedError("Not implemented yet.");
      }
};