[clang-tidy] replace typedef with using
Found with modernize-use-using Signed-off-by: Rosen Penev <rosenp@gmail.com>
This commit is contained in:
parent
a9681f2e05
commit
f02b0dda3a
@ -8,8 +8,8 @@
|
||||
|
||||
class NullEventHandler : public YAML::EventHandler {
|
||||
public:
|
||||
typedef YAML::Mark Mark;
|
||||
typedef YAML::anchor_t anchor_t;
|
||||
using Mark = YAML::Mark;
|
||||
using anchor_t = YAML::anchor_t;
|
||||
|
||||
NullEventHandler() {}
|
||||
|
||||
|
||||
@ -6,8 +6,8 @@
|
||||
|
||||
class NullEventHandler : public YAML::EventHandler {
|
||||
public:
|
||||
typedef YAML::Mark Mark;
|
||||
typedef YAML::anchor_t anchor_t;
|
||||
using Mark = YAML::Mark;
|
||||
using anchor_t = YAML::anchor_t;
|
||||
|
||||
NullEventHandler() {}
|
||||
|
||||
|
||||
Loading…
Reference in New Issue
Block a user