From 0d2606e15e296f23bf1951f7f24b9e60cffe8212 Mon Sep 17 00:00:00 2001 From: Jens Maurer Date: Wed, 19 Sep 2001 20:31:31 +0000 Subject: [PATCH] avoid "unused variable" warning [SVN r11158] --- test/config_info.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/test/config_info.cpp b/test/config_info.cpp index 73a7db0b..07b77cdc 100644 --- a/test/config_info.cpp +++ b/test/config_info.cpp @@ -61,7 +61,7 @@ void print_expression(const char* expression, T val) #define PRINT_EXPRESSION(E) print_expression(#E, E); template -void print_byte_order(const char* what, T t) +void print_byte_order(const char* what, T /* t */ ) { T val = 0; unsigned i;