Skip to content

Commit a1c6288

Browse files
committed
abstract-parser: use using instead of typedef
1 parent bc599ec commit a1c6288

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/abstract-parser.hh

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -26,7 +26,7 @@
2626
#include <memory>
2727

2828
/// used only by the JSON format
29-
typedef std::map<std::string, std::string> TScanProps;
29+
using TScanProps = std::map<std::string, std::string>;
3030

3131
enum EFileFormat {
3232
FF_INVALID = 0, ///< for signalling errors

0 commit comments

Comments
 (0)