From c6a8a1571b5c7c835c2e6671fe4ade29acfcbaf5 Mon Sep 17 00:00:00 2001 From: Antonin Portelli Date: Tue, 8 Mar 2016 19:39:05 +0000 Subject: [PATCH] minor code cleaning --- examples/exInterp.cpp | 5 ++--- lib/Global.hpp | 9 --------- 2 files changed, 2 insertions(+), 12 deletions(-) diff --git a/examples/exInterp.cpp b/examples/exInterp.cpp index 0b560f3..c092a15 100644 --- a/examples/exInterp.cpp +++ b/examples/exInterp.cpp @@ -19,8 +19,7 @@ #include - -int main(int argc, char* argv[]) +int main(void) { Latan::DVec xs(3); xs << -1.0, 0.0, 1.0; @@ -48,4 +47,4 @@ int main(int argc, char* argv[]) double expected = (x > 0.5) ? 1.0 : ((x <= -0.5) ? 1.0 : 0.0); std::cout << " ( " << expected << " expected)" << std::endl; } -} \ No newline at end of file +} diff --git a/lib/Global.hpp b/lib/Global.hpp index cab85b0..a160207 100644 --- a/lib/Global.hpp +++ b/lib/Global.hpp @@ -21,15 +21,6 @@ #define Latan_Global_hpp_ #include -#include -#include -#include -#include -#include -#include -#include -#include -#include #define BEGIN_LATAN_NAMESPACE \ namespace Latan {\