[clang-tidy] replace typedef with using

Found with modernize-use-using

Signed-off-by: Rosen Penev <rosenp@gmail.com>
This commit is contained in:
Rosen Penev 2020-06-02 21:27:16 -07:00
parent 4dbfeb0bbc
commit fad60d0bff
No known key found for this signature in database
GPG Key ID: 36D31CFA845F0E3B
2 changed files with 4 additions and 4 deletions

View File

@ -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() {}

View File

@ -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() {}