change typedef to using according to preferred coding style

This commit is contained in:
Lu Guanqun 2015-02-06 15:19:22 +08:00
parent 724ee76900
commit 4f6ac1b536

View File

@ -38,7 +38,7 @@ struct CompilerError: virtual Exception {};
struct InternalCompilerError: virtual Exception {};
struct DocstringParsingError: virtual Exception {};
typedef boost::error_info<struct tag_sourceLocation, Location> errinfo_sourceLocation;
using errinfo_sourceLocation = boost::error_info<struct tag_sourceLocation, Location>;
}
}