Skip to content

Commit

Permalink
don't use the "using namespace std" thing for non-VS2008, it confuses
Browse files Browse the repository at this point in the history
GCC between the C library isinf() vs std::isinf().
  • Loading branch information
joncampbell123 committed Apr 5, 2015
1 parent 091d112 commit 37751ca
Showing 1 changed file with 0 additions and 1 deletion.
1 change: 0 additions & 1 deletion src/fpu/fpu_instructions.h
Original file line number Diff line number Diff line change
Expand Up @@ -370,7 +370,6 @@ static void FPU_FST(Bitu st, Bitu other){
# define isinf(x) (!(_finite(x) || _isnan(x)))
#else
# include <cmath>
using namespace std;
#endif

static void FPU_FCOM(Bitu st, Bitu other){
Expand Down

0 comments on commit 37751ca

Please sign in to comment.