@@ -16,9 +16,9 @@ limitations under the License.
16
16
#ifndef LIB_ERROR_HELPER_H_
17
17
#define LIB_ERROR_HELPER_H_
18
18
19
- #include < type_traits >
19
+ #include < lib/boost_format_compat.h >
20
20
21
- #include < boost/format.hpp >
21
+ #include < type_traits >
22
22
23
23
#include " lib/error_message.h"
24
24
#include " lib/source_file.h"
@@ -29,34 +29,34 @@ namespace priv {
29
29
30
30
// All these methods return std::string because this is the native format of boost::format
31
31
// Position is printed at the beginning.
32
- static inline ErrorMessage error_helper (boost::format &f, ErrorMessage out) {
32
+ static inline ErrorMessage error_helper (BoostFormatCompat &f, ErrorMessage out) {
33
33
out.message = boost::str (f);
34
34
return out;
35
35
}
36
36
37
37
template <class ... Args>
38
- auto error_helper (boost::format &f, ErrorMessage out, const char *t, Args &&...args) {
38
+ auto error_helper (BoostFormatCompat &f, ErrorMessage out, const char *t, Args &&...args) {
39
39
return error_helper (f % t, out, std::forward<Args>(args)...);
40
40
}
41
41
42
42
template <typename T, class ... Args>
43
- auto error_helper (boost::format &f, ErrorMessage out, const T &t,
44
- Args &&...args) -> std::enable_if_t<Util::has_toString_v<T>, ErrorMessage>;
43
+ auto error_helper (BoostFormatCompat &f, ErrorMessage out, const T &t, Args &&...args)
44
+ -> std::enable_if_t<Util::has_toString_v<T>, ErrorMessage>;
45
45
46
46
template <typename T, class ... Args>
47
- auto error_helper (boost::format &f, ErrorMessage out, const T &t, Args &&...args)
47
+ auto error_helper (BoostFormatCompat &f, ErrorMessage out, const T &t, Args &&...args)
48
48
-> std::enable_if_t<!Util::has_toString_v<T> && !std::is_pointer_v<T>, ErrorMessage>;
49
49
50
50
template <typename T, class ... Args>
51
- auto error_helper (boost::format &f, ErrorMessage out, const T *t, Args &&...args) {
51
+ auto error_helper (BoostFormatCompat &f, ErrorMessage out, const T *t, Args &&...args) {
52
52
// Contrary to bug_helper we do not want to show raw pointers to users in
53
53
// ordinary error messages. Therefore we explicitly delegate to
54
54
// reference-arg implementation here.
55
55
return error_helper (f, out, *t, std::forward<Args>(args)...);
56
56
}
57
57
58
58
template <class ... Args>
59
- ErrorMessage error_helper (boost::format &f, ErrorMessage out, const Util::SourceInfo &info,
59
+ ErrorMessage error_helper (BoostFormatCompat &f, ErrorMessage out, const Util::SourceInfo &info,
60
60
Args &&...args) {
61
61
if (info.isValid ()) out.locations .push_back (info);
62
62
return error_helper (f % " " , std::move (out), std::forward<Args>(args)...);
@@ -71,15 +71,15 @@ void maybeAddSourceInfo(ErrorMessage &out, const T &t) {
71
71
}
72
72
73
73
template <typename T, class ... Args>
74
- auto error_helper (boost::format &f, ErrorMessage out, const T &t, Args &&...args)
74
+ auto error_helper (BoostFormatCompat &f, ErrorMessage out, const T &t, Args &&...args)
75
75
-> std::enable_if_t<!Util::has_toString_v<T> && !std::is_pointer_v<T>, ErrorMessage> {
76
76
maybeAddSourceInfo (out, t);
77
77
return error_helper (f % t, std::move (out), std::forward<Args>(args)...);
78
78
}
79
79
80
80
template <typename T, class ... Args>
81
- auto error_helper (boost::format &f, ErrorMessage out, const T &t,
82
- Args &&...args) -> std::enable_if_t<Util::has_toString_v<T>, ErrorMessage> {
81
+ auto error_helper (BoostFormatCompat &f, ErrorMessage out, const T &t, Args &&...args)
82
+ -> std::enable_if_t<Util::has_toString_v<T>, ErrorMessage> {
83
83
maybeAddSourceInfo (out, t);
84
84
return error_helper (f % t.toString (), std::move (out), std::forward<Args>(args)...);
85
85
}
@@ -88,21 +88,21 @@ auto error_helper(boost::format &f, ErrorMessage out, const T &t,
88
88
89
89
// Most direct invocations of error_helper usually only reduce arguments
90
90
template <class ... Args>
91
- ErrorMessage error_helper (boost::format &f, Args &&...args) {
91
+ ErrorMessage error_helper (BoostFormatCompat &f, Args &&...args) {
92
92
ErrorMessage msg;
93
93
return priv::error_helper (f, msg, std::forward<Args>(args)...);
94
94
}
95
95
96
96
// Invoked from ErrorReporter
97
97
template <class ... Args>
98
- ErrorMessage error_helper (boost::format &f, ErrorMessage msg, Args &&...args) {
98
+ ErrorMessage error_helper (BoostFormatCompat &f, ErrorMessage msg, Args &&...args) {
99
99
return priv::error_helper (f, std::move (msg), std::forward<Args>(args)...);
100
100
}
101
101
102
102
// This overload exists for backwards compatibility
103
103
template <class ... Args>
104
- ErrorMessage error_helper (boost::format &f, const std::string &prefix, const Util::SourceInfo &info ,
105
- const std::string &suffix, Args &&...args) {
104
+ ErrorMessage error_helper (BoostFormatCompat &f, const std::string &prefix,
105
+ const Util::SourceInfo &info, const std::string &suffix, Args &&...args) {
106
106
return priv::error_helper (f, ErrorMessage (prefix, info, suffix), std::forward<Args>(args)...);
107
107
}
108
108
0 commit comments