From df966c14107270528871f1c2d7e5f045004ad65f Mon Sep 17 00:00:00 2001 From: John Maddock Date: Tue, 17 May 2005 10:24:49 +0000 Subject: [PATCH] Fix for Borland C++. [SVN r28984] --- example/grep/grep.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/example/grep/grep.cpp b/example/grep/grep.cpp index c181d8fa..d68cc68c 100644 --- a/example/grep/grep.cpp +++ b/example/grep/grep.cpp @@ -91,7 +91,7 @@ void process_file(const std::string& name) process_stream(is); } -int main(int argc, char * argv[]) +int main(int argc, const char * argv[]) { try{ po::options_description opts("Options");