From 42210bc0b419ff0139165b7377b49a7e49b95e0e Mon Sep 17 00:00:00 2001 From: mahsa Date: Thu, 25 May 2017 10:19:28 -0500 Subject: [PATCH] Removed using namespace std from error.h as it was causing compilation errors in unix --- stim/cuda/cudatools/error.h | 15 +++++++-------- 1 file changed, 7 insertions(+), 8 deletions(-) diff --git a/stim/cuda/cudatools/error.h b/stim/cuda/cudatools/error.h index ddce736..517113b 100644 --- a/stim/cuda/cudatools/error.h +++ b/stim/cuda/cudatools/error.h @@ -3,7 +3,6 @@ #include #include -using namespace std; #include "cuda_runtime.h" #include "device_launch_parameters.h" #include "cufft.h" @@ -23,19 +22,19 @@ static void cufftHandleError( cufftResult err, const char*file, int line ) if (err != CUFFT_SUCCESS) { if(err == CUFFT_INVALID_PLAN) - cout<<"The plan parameter is not a valid handle."<