Merge pull request #969 from guanqun/change-to-using

change typedef to using according to preferred coding style
This commit is contained in:
Gav Wood
2015-02-09 12:16:18 -08:00
+1 -1
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>;
}
}