clang-tidy: use using
Found with modernize-use-using Signed-off-by: Rosen Penev <rosenp@gmail.com>
This commit is contained in:
committed by
Luis Díaz Más
parent
b3040da54c
commit
bd6a996181
@@ -60,7 +60,7 @@ struct Token {
|
||||
bool a; // name is an array eg History[]
|
||||
int i; // index (indexed from 1) eg History[1]/stEvt:action
|
||||
};
|
||||
typedef std::vector<Token> Tokens;
|
||||
using Tokens = std::vector<Token>;
|
||||
|
||||
// "XMP.xmp.MP.RegionInfo/MPRI:Regions[1]/MPReg:Rectangle"
|
||||
bool getToken(std::string& in,Token& token, std::set<std::string>* pNS=NULL)
|
||||
|
||||
Reference in New Issue
Block a user