osx: fix c++11 build failure

* move from 'math.h' to 'cmath' header

Error:
smithdiagram.cpp:64:11: error: expected unqualified-id
  if(std::isfinite(*px))
This commit is contained in:
Guilherme Brondani Torri 2015-01-09 13:33:41 +01:00
parent 2ed9ae0075
commit 1ed39d5387
8 changed files with 8 additions and 8 deletions

View File

@ -29,7 +29,7 @@
#include <stdlib.h>
#include <stdio.h>
#include <string.h>
#include <math.h>
#include <cmath>
#include "units.h"
#include "transline.h"

View File

@ -23,7 +23,7 @@
#if HAVE_CONFIG_H
# include <config.h>
#endif
#include <math.h>
#include <cmath>
#include <float.h>
#if HAVE_IEEEFP_H
# include <ieeefp.h>

View File

@ -28,7 +28,7 @@
# include <config.h>
#endif
#include <stdlib.h>
#include <math.h>
#include <cmath>
#include <float.h>
#if HAVE_IEEEFP_H
# include <ieeefp.h>

View File

@ -23,7 +23,7 @@
#if HAVE_CONFIG_H
# include <config.h>
#endif
#include <math.h>
#include <cmath>
#include <float.h>
#if HAVE_IEEEFP_H
# include <ieeefp.h>

View File

@ -23,7 +23,7 @@
#if HAVE_CONFIG_H
# include <config.h>
#endif
#include <math.h>
#include <cmath>
#include <float.h>
#if HAVE_IEEEFP_H
# include <ieeefp.h>

View File

@ -26,7 +26,7 @@
# include <config.h>
#endif
#include <stdlib.h>
#include <math.h>
#include <cmath>
#include <float.h>
#include <limits.h>
#if HAVE_IEEEFP_H

View File

@ -25,7 +25,7 @@
#if HAVE_CONFIG_H
# include <config.h>
#endif
#include <math.h>
#include <cmath>
#include <float.h>
#if HAVE_IEEEFP_H
# include <ieeefp.h>

View File

@ -23,7 +23,7 @@
#if HAVE_CONFIG_H
# include <config.h>
#endif
#include <math.h>
#include <cmath>
#include <float.h>
#if HAVE_IEEEFP_H
# include <ieeefp.h>