diff options
author | Eelco Dolstra <edolstra@gmail.com> | 2017-04-14T12·42+0200 |
---|---|---|
committer | Eelco Dolstra <edolstra@gmail.com> | 2017-04-14T12·42+0200 |
commit | f8a2e8a55203f2cc16d70ad43afcc186adaab6b3 (patch) | |
tree | 140135f2478edeb4d974112cfbe5023a50a32cfd /src/boost | |
parent | dd3714f6eff44e0777c5e8afcc7a29e283986629 (diff) |
Shut up some warnings
Diffstat (limited to 'src/boost')
-rw-r--r-- | src/boost/format/feed_args.hpp | 7 |
1 files changed, 7 insertions, 0 deletions
diff --git a/src/boost/format/feed_args.hpp b/src/boost/format/feed_args.hpp index 3d0b47b4a12e..cdd57fdf2bf1 100644 --- a/src/boost/format/feed_args.hpp +++ b/src/boost/format/feed_args.hpp @@ -41,6 +41,13 @@ namespace { std::streamsize w, const char c, std::ios::fmtflags f, + bool center) + __attribute__ ((unused)); + + void do_pad( std::string & s, + std::streamsize w, + const char c, + std::ios::fmtflags f, bool center) // applies centered / left / right padding to the string s. // Effects : string s is padded. |