From: David Sarrut Date: Wed, 16 Jul 2014 16:06:23 +0000 (+0200) Subject: Correct DDS X-Git-Tag: v1.4.0~16^2~10^2~3 X-Git-Url: https://git.creatis.insa-lyon.fr/pubgit/?a=commitdiff_plain;h=f8af47aca583b87ace8a744adc643fa7c55701af;p=clitk.git Correct DDS --- diff --git a/common/clitkDD.h b/common/clitkDD.h index 97ba443..c5a9996 100644 --- a/common/clitkDD.h +++ b/common/clitkDD.h @@ -38,6 +38,6 @@ template void _print_container(T const& a) { for(typename T::const_iterator i=a.begin();i!=a.end();++i) { std::cout << *i << " "; };} -#define DDS(a) { std::cout << #a " = [ "; _print_container(a) ; std::cout << " ]" << std::endl;std::cout.flush():} +#define DDS(a) { std::cout << #a " = [ "; _print_container(a) ; std::cout << " ]" << std::endl;std::cout.flush();} #endif