From ad0b6ca329e952e60676d70600e044ba67c97c3c Mon Sep 17 00:00:00 2001 From: Marcelo Matus Date: Sun, 29 Jan 2006 17:33:15 +0000 Subject: [PATCH] add const global string case git-svn-id: https://swig.svn.sourceforge.net/svnroot/swig/trunk/SWIG@8616 626c5289-ae23-0410-ae9c-e8d60b6d4f22 --- Examples/test-suite/python/li_std_string.i | 1 + 1 file changed, 1 insertion(+) diff --git a/Examples/test-suite/python/li_std_string.i b/Examples/test-suite/python/li_std_string.i index 3f4f6a7ca..9a766a644 100644 --- a/Examples/test-suite/python/li_std_string.i +++ b/Examples/test-suite/python/li_std_string.i @@ -108,6 +108,7 @@ std::basic_string,std::allocator > test_value_ %inline %{ std::string GlobalString; std::string GlobalString2 = "global string 2"; +const std::string ConstGlobalString = "const global string"; struct Structure { std::string MemberString;