File tree Expand file tree Collapse file tree 2 files changed +4
-3
lines changed Expand file tree Collapse file tree 2 files changed +4
-3
lines changed Original file line number Diff line number Diff line change @@ -16,7 +16,7 @@ namespace metkit {
16
16
namespace mars {
17
17
18
18
// ----------------------------------------------------------------------------------------------------------------------
19
- MarsParserContext::MarsParserContext (size_t line, size_t /* column */ ):
19
+ MarsParserContext::MarsParserContext (std:: size_t line, std:: size_t /* column */ ):
20
20
line_ (line)
21
21
// ,column_(column)
22
22
{
Original file line number Diff line number Diff line change 19
19
20
20
#include " metkit/mars/MarsExpandContext.h"
21
21
22
+ #include < cstddef>
22
23
23
24
namespace metkit {
24
25
namespace mars {
@@ -31,10 +32,10 @@ class MarsParserContext : public MarsExpandContext {
31
32
32
33
public:
33
34
34
- MarsParserContext (size_t , size_t );
35
+ MarsParserContext (std:: size_t , std:: size_t );
35
36
36
37
private:
37
- size_t line_;
38
+ std:: size_t line_;
38
39
// size_t column_; // unused
39
40
40
41
virtual void info (std::ostream& out) const ;
You can’t perform that action at this time.
0 commit comments