File tree 3 files changed +3
-3
lines changed
3 files changed +3
-3
lines changed Original file line number Diff line number Diff line change @@ -15,7 +15,7 @@ libnop has the following goals:
15
15
types, formats, and protocols: perform these tasks naturally within the C++
16
16
language.
17
17
* Avoid additional runtime support requirements for serialization.
18
- * Provide contemporary features such as bi-directional binary compatability,
18
+ * Provide contemporary features such as bidirectional binary compatability,
19
19
data validation, type safety, and type fungibility.
20
20
* Handle intrinsic types, common STL types and containers, and user-defined
21
21
types with a minimum of effort.
Original file line number Diff line number Diff line change @@ -237,7 +237,7 @@ struct TemplateType {
237
237
// public methods to enforce policy on how the data may be used.
238
238
class Items {
239
239
public:
240
- Items = default;
240
+ Items() = default;
241
241
Items(std::vector< std::string > items) : items_ {std::move(items)} {}
242
242
Items(const Items&) = default;
243
243
Items(Items&&) = default;
Original file line number Diff line number Diff line change @@ -31,7 +31,7 @@ namespace nop {
31
31
//
32
32
// Backtrace utility based on the UNIX backtrace API.
33
33
//
34
- // Provides a simple mechanism to generate a backtrace with sumbol lookup.
34
+ // Provides a simple mechanism to generate a backtrace with symbol lookup.
35
35
//
36
36
37
37
class Backtrace {
You can’t perform that action at this time.
0 commit comments