From 54b79a65fbe03459fb3d5acef53748a91678c055 Mon Sep 17 00:00:00 2001 From: Stefan Sayer Date: Fri, 16 Jul 2010 02:14:14 +0200 Subject: [PATCH] core: fix isArgDouble test macro --- core/AmArg.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/core/AmArg.h b/core/AmArg.h index 4c97448f..5a879cbe 100644 --- a/core/AmArg.h +++ b/core/AmArg.h @@ -191,7 +191,7 @@ class AmArg #define isArgUndef(a) (AmArg::Undef == a.getType()) #define isArgArray(a) (AmArg::Array == a.getType()) #define isArgStruct(a)(AmArg::Struct == a.getType()) -#define isArgDouble(a) (AmArg::Array == a.getType()) +#define isArgDouble(a) (AmArg::Double == a.getType()) #define isArgInt(a) (AmArg::Int == a.getType()) #define isArgBool(a) (AmArg::Bool == a.getType()) #define isArgCStr(a) (AmArg::CStr == a.getType())