Index: src/CodeGen/CodeGenerator2.cc
===================================================================
--- src/CodeGen/CodeGenerator2.cc	(revision 843054c23fcb725d2486e5e42e91b3741bc523b8)
+++ src/CodeGen/CodeGenerator2.cc	(revision 367e082669bed759f36ff590dedd54bd4eb7b398)
@@ -10,6 +10,6 @@
 // Created On       : Mon May 18 07:44:20 2015
 // Last Modified By : Peter A. Buhr
-// Last Modified On : Thu May 21 17:13:35 2015
-// Update Count     : 7
+// Last Modified On : Sun May 24 20:43:16 2015
+// Update Count     : 11
 //
 
@@ -40,10 +40,10 @@
 
 	CodeGenerator2::CodeGenerator2( std::ostream &os, std::string init, int indent, bool infunp )
-		: cur_indent( indent ), insideFunction( infunp ), before( os ) {
+			: cur_indent( indent ), insideFunction( infunp ), before( os ) {
 		//before << std::string( init );
 	}
 
 	CodeGenerator2::CodeGenerator2( std::ostream &os, char *init, int indent, bool infunp )
-		: cur_indent( indent ), insideFunction( infunp ), before( os ) {
+			: cur_indent( indent ), insideFunction( infunp ), before( os ) {
 		//before << std::string( init );
 	}
@@ -60,4 +60,7 @@
 	void CodeGenerator2::visit( FunctionDecl *functionDecl ) {
 		handleStorageClass( functionDecl );
+		if ( functionDecl->get_isInline() ) {
+			before << "inline ";
+		} // if
 		before << genType( functionDecl->get_functionType(), mangleName( functionDecl ) );
 
@@ -656,4 +659,10 @@
 			before << "register ";
 			break;
+		  case Declaration::Inline:
+			// handled as special via isInline flag (FIX)
+			break;
+		  case Declaration::Fortran:
+			// not handled
+			break;
 		} // switch
 	}
