From 7f5c1d6b8f386dbe35e4bd3c42733d86feb12c9d Mon Sep 17 00:00:00 2001 From: John Maddock Date: Sat, 26 Jul 2003 11:11:54 +0000 Subject: [PATCH] made local variables static, so that the code can be reused by regex_config_info. [SVN r19316] --- test/config_info.cpp | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/test/config_info.cpp b/test/config_info.cpp index d639bc3b..f1edcc3a 100644 --- a/test/config_info.cpp +++ b/test/config_info.cpp @@ -18,8 +18,8 @@ #include #endif -unsigned int indent = 4; -unsigned int width = 40; +static unsigned int indent = 4; +static unsigned int width = 40; using std::cout; using std::istream;