File tree 4 files changed +6
-4
lines changed
4 files changed +6
-4
lines changed Original file line number Diff line number Diff line change 1
1
# common-cpp Changes
2
2
3
+ ## Upcoming
4
+
3
5
## v1.0.0
4
- Initial Release.
6
+ Initial Release.
Original file line number Diff line number Diff line change @@ -77,7 +77,7 @@ struct base_formatter {
77
77
// / @brief Parse the format string.
78
78
// / @param ctx see `fmt::formatter::parse`.
79
79
// / @return see `fmt::formatter::parse`.
80
- fmt::format_parse_context::iterator parse (fmt::format_parse_context& ctx) noexcept ;
80
+ fmt::format_parse_context::iterator parse (fmt::format_parse_context& ctx);
81
81
82
82
protected:
83
83
const std::string& GetFormat () const noexcept {
Original file line number Diff line number Diff line change @@ -47,7 +47,7 @@ limitations under the License.
47
47
48
48
namespace m3c ::internal {
49
49
50
- fmt::format_parse_context::iterator base_formatter::parse (fmt::format_parse_context& ctx) noexcept { // NOLINT(readability-convert-member-functions-to-static): Specialization of fmt::formatter.
50
+ fmt::format_parse_context::iterator base_formatter::parse (fmt::format_parse_context& ctx) { // NOLINT(readability-convert-member-functions-to-static): Specialization of fmt::formatter.
51
51
auto it = ctx.begin ();
52
52
const auto last = ctx.end ();
53
53
if (it != last && *it == ' :' ) {
Original file line number Diff line number Diff line change @@ -33,7 +33,7 @@ IFoo : public IUnknown {
33
33
class Foo : public ComObject <IFoo> {
34
34
public:
35
35
Foo () = default ;
36
- Foo (int value)
36
+ explicit Foo (int value)
37
37
: m_value(value) {
38
38
// empty
39
39
}
You can’t perform that action at this time.
0 commit comments