Index: src/Parser/DeclarationNode.cc
===================================================================
--- src/Parser/DeclarationNode.cc	(revision ddfd945b741f2ed2bdb7c54fa54688244b98c7de)
+++ src/Parser/DeclarationNode.cc	(revision fb04321abbe18f5825d5080f9fab8fd2895bab07)
@@ -10,6 +10,6 @@
 // Created On       : Sat May 16 12:34:05 2015
 // Last Modified By : Peter A. Buhr
-// Last Modified On : Thu Mar 16 08:37:57 2017
-// Update Count     : 1006
+// Last Modified On : Thu Mar 16 09:10:57 2017
+// Update Count     : 1007
 //
 
@@ -1032,5 +1032,5 @@
 		//    inline _Noreturn int g( int i );	// allowed
 		//    inline _Noreturn int i;			// disallowed
-		if ( type->kind != TypeData::Function && funcSpecs.val != 0 ) {
+		if ( type->kind != TypeData::Function && funcSpecs.any() ) {
 			throw SemanticError( "invalid function specifier for ", this );
 		} // if
@@ -1042,5 +1042,5 @@
 	//    inlne _Noreturn struct S { ... };		// disallowed
 	//    inlne _Noreturn enum   E { ... };		// disallowed
-	if ( funcSpecs.val != 0 ) {
+	if ( funcSpecs.any() ) {
 		throw SemanticError( "invalid function specifier for ", this );
 	} // if
