Unverified Commit 66171449 by Rosen Penev Committed by GitHub

[clang-tidy] replace typedef with using (#886)

Found with modernize-use-using

Signed-off-by: Rosen Penev <rosenp@gmail.com>
parent 33c9f6e0
......@@ -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() = default;
......
......@@ -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() = default;
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment