aboutsummaryrefslogtreecommitdiff
path: root/src/stable/string.h
diff options
context:
space:
mode:
authorMike Buland <eichlan@xagasoft.com>2012-09-05 21:10:05 +0000
committerMike Buland <eichlan@xagasoft.com>2012-09-05 21:10:05 +0000
commit912207fe0fa25d21837ced09dcd689c68e449ef7 (patch)
tree47f7ebb10e813987b9989ce70efc62cdbe451da8 /src/stable/string.h
parente5f2e1ce7faeb8fb4609f7291e77d5b682685057 (diff)
downloadlibbu++-912207fe0fa25d21837ced09dcd689c68e449ef7.tar.gz
libbu++-912207fe0fa25d21837ced09dcd689c68e449ef7.tar.bz2
libbu++-912207fe0fa25d21837ced09dcd689c68e449ef7.tar.xz
libbu++-912207fe0fa25d21837ced09dcd689c68e449ef7.zip
Added extra formatting argument indexing method to Bu::String::FormatProxy.
You can now use %{3} so that arguments can be followed by a digit.
Diffstat (limited to 'src/stable/string.h')
-rw-r--r--src/stable/string.h1
1 files changed, 1 insertions, 0 deletions
diff --git a/src/stable/string.h b/src/stable/string.h
index c92a704..197821d 100644
--- a/src/stable/string.h
+++ b/src/stable/string.h
@@ -950,6 +950,7 @@ namespace Bu
950 class FormatProxyEndAction 950 class FormatProxyEndAction
951 { 951 {
952 public: 952 public:
953 virtual ~FormatProxyEndAction() { };
953 virtual void operator()( const Bu::String &sFinal )=0; 954 virtual void operator()( const Bu::String &sFinal )=0;
954 }; 955 };
955 956