1
0
mirror of https://github.com/aportelli/LatAnalyze.git synced 2025-06-25 02:02:02 +01:00

namespace macro refactoring to avoid conflicts

This commit is contained in:
2015-01-28 17:15:05 +00:00
parent 583fd05edf
commit 3f812ee514
32 changed files with 75 additions and 69 deletions

View File

@ -34,8 +34,8 @@
#include <vector>
#include <cstdlib>
#define BEGIN_NAMESPACE namespace Latan {
#define END_NAMESPACE }
#define BEGIN_LATAN_NAMESPACE namespace Latan {
#define END_LATAN_NAMESPACE }
// macro utilities
#define unique_arg(...) __VA_ARGS__
@ -61,7 +61,7 @@ Class & operator=(const ExprType<Derived> &m)\
return *this;\
}
BEGIN_NAMESPACE
BEGIN_LATAN_NAMESPACE
// Eigen type aliases //////////////////////////////////////////////////////////
const int dynamic = -1;
@ -284,7 +284,7 @@ ProgressBar::ProgressBar(const A current, const B total, const Index nCol)
, nCol_(nCol)
{}
END_NAMESPACE
END_LATAN_NAMESPACE
#include <LatAnalyze/Exceptions.hpp>