r195897 - Add a return statement to the func with an int return type.

Kaelyn Uhrain rikka at google.com
Wed Nov 27 16:13:38 PST 2013


Author: rikka
Date: Wed Nov 27 18:13:38 2013
New Revision: 195897

URL: http://llvm.org/viewvc/llvm-project?rev=195897&view=rev
Log:
Add a return statement to the func with an int return type.

Modified:
    cfe/trunk/test/SemaTemplate/instantiate-local-class.cpp

Modified: cfe/trunk/test/SemaTemplate/instantiate-local-class.cpp
URL: http://llvm.org/viewvc/llvm-project/cfe/trunk/test/SemaTemplate/instantiate-local-class.cpp?rev=195897&r1=195896&r2=195897&view=diff
==============================================================================
--- cfe/trunk/test/SemaTemplate/instantiate-local-class.cpp (original)
+++ cfe/trunk/test/SemaTemplate/instantiate-local-class.cpp Wed Nov 27 18:13:38 2013
@@ -178,5 +178,6 @@ namespace PR14373 {
   };
   int call() {
     exec_func(Type());
+    return 0;
   }
 }





More information about the cfe-commits mailing list