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