1
0
mirror of https://github.com/aportelli/LatAnalyze.git synced 2026-01-13 20:49:34 +00:00

code cleaning and GCC compatibility

This commit is contained in:
2015-06-15 14:59:10 +02:00
parent 3e6b0edce1
commit cb45b34ddc
12 changed files with 75 additions and 81 deletions

View File

@@ -21,14 +21,16 @@
#include <LatAnalyze/includes.hpp>
using namespace std;
using namespace Latan;
/******************************************************************************
* DMat implementation *
******************************************************************************/
// IO //////////////////////////////////////////////////////////////////////////
template <>
IoObject::IoType Mat<double>::getType(void) const
namespace Latan
{
return IoType::dMat;
template <>
IoObject::IoType Mat<double>::getType(void) const
{
return IoType::dMat;
}
}