diff options
author | Stephan Bergmann <sbergman@redhat.com> | 2016-05-11 09:44:40 +0200 |
---|---|---|
committer | Stephan Bergmann <sbergman@redhat.com> | 2016-05-11 09:44:40 +0200 |
commit | 4e8a0a75f46356639ac9e00086e2ec9b9f333c77 (patch) | |
tree | 03e8067ad4232874e209346f4df18cc426fe3dc0 /external | |
parent | 88100c5acd81db37fc0a2131b4c87f6f0648bd6f (diff) |
Missing include
Change-Id: If7abf2ad3ac738e7103491e38a0e53ba424f5550
Diffstat (limited to 'external')
-rw-r--r-- | external/boost/fallthrough.patch.0 | 14 |
1 files changed, 11 insertions, 3 deletions
diff --git a/external/boost/fallthrough.patch.0 b/external/boost/fallthrough.patch.0 index f8985bd7a9f0..02b09dc489df 100644 --- a/external/boost/fallthrough.patch.0 +++ b/external/boost/fallthrough.patch.0 @@ -1,6 +1,14 @@ --- boost/format/parsing.hpp +++ boost/format/parsing.hpp -@@ -267,6 +267,7 @@ +@@ -19,6 +19,7 @@ + #include <boost/format/exceptions.hpp> + #include <boost/throw_exception.hpp> + #include <boost/assert.hpp> ++#include <boost/config.hpp> + + + namespace boost { +@@ -267,6 +268,7 @@ switch ( wrap_narrow(fac, *start, 0) ) { case 'X': fpar->fmtstate_.flags_ |= std::ios_base::uppercase; @@ -8,7 +16,7 @@ case 'p': // pointer => set hex. case 'x': fpar->fmtstate_.flags_ &= ~std::ios_base::basefield; -@@ -280,6 +281,7 @@ +@@ -280,6 +282,7 @@ case 'E': fpar->fmtstate_.flags_ |= std::ios_base::uppercase; @@ -16,7 +24,7 @@ case 'e': fpar->fmtstate_.flags_ &= ~std::ios_base::floatfield; fpar->fmtstate_.flags_ |= std::ios_base::scientific; -@@ -291,6 +293,7 @@ +@@ -291,6 +294,7 @@ case 'f': fpar->fmtstate_.flags_ &= ~std::ios_base::floatfield; fpar->fmtstate_.flags_ |= std::ios_base::fixed; |