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

Fixed int to String conversion in Simplex.h

parent 4a6d0a3e
Loading
Loading
Loading
Loading
+1 −1
Original line number Diff line number Diff line
@@ -32,7 +32,7 @@ class Simplex

      static String getType()
      {
         return String( "Topologies::Simplex< " ) + String( dimension ) + " >";
         return String( "Topologies::Simplex< " ) + convertToString( dimension ) + " >";
      }
};