From 4f6ac1b5360466267eb996e41714099b71d0081d Mon Sep 17 00:00:00 2001 From: Lu Guanqun Date: Fri, 6 Feb 2015 15:19:22 +0800 Subject: [PATCH] change typedef to using according to preferred coding style --- Exceptions.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Exceptions.h b/Exceptions.h index 14f919772..0b25abee1 100644 --- a/Exceptions.h +++ b/Exceptions.h @@ -38,7 +38,7 @@ struct CompilerError: virtual Exception {}; struct InternalCompilerError: virtual Exception {}; struct DocstringParsingError: virtual Exception {}; -typedef boost::error_info errinfo_sourceLocation; +using errinfo_sourceLocation = boost::error_info; } }