From 6ac28e8e194d6fd7f87a2e0e7ab519409a0ce528 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Joaqu=C3=ADn=20M=2E=20L=C3=B3pez=20Mu=C3=B1oz?= Date: Tue, 14 Sep 2004 09:53:05 +0000 Subject: [PATCH] fixed Intel Linux pp bug about <: incorrectly treated as a digraph [SVN r25078] --- test/alignment_of_test.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/test/alignment_of_test.cpp b/test/alignment_of_test.cpp index 2287b75..3d6d9ae 100644 --- a/test/alignment_of_test.cpp +++ b/test/alignment_of_test.cpp @@ -31,7 +31,7 @@ struct align_calc } }; -#define ALIGNOF(x) align_calc::get() +#define ALIGNOF(x) align_calc< x>::get() TT_TEST_BEGIN(alignment_of)