Index: src/Common/utility.h
===================================================================
--- src/Common/utility.h	(revision 88f15ae7977cd21fe85f845fd0a70397546352f8)
+++ src/Common/utility.h	(revision f14d956b47dd08a8c9a556c05f84437d6a9ca651)
@@ -10,6 +10,6 @@
 // Created On       : Mon May 18 07:44:20 2015
 // Last Modified By : Peter A. Buhr
-// Last Modified On : Thu Apr 19 16:21:44 2018
-// Update Count     : 37
+// Last Modified On : Fri Apr 20 22:35:33 2018
+// Update Count     : 38
 //
 
@@ -437,9 +437,9 @@
 
 // -----------------------------------------------------------------------------
-// O(1) polymorphic integer log2, using clz, which returns the number of leading 0-bits, starting at the most
+// O(1) polymorphic integer ilog2, using clz, which returns the number of leading 0-bits, starting at the most
 // significant bit (single instruction on x86)
 
 template<typename T>
-inline constexpr T log2(const T & t) {
+inline constexpr T ilog2(const T & t) {
 	if ( std::is_integral<T>::value ) {
 		const constexpr int r = sizeof(t) * __CHAR_BIT__ - 1;
@@ -449,5 +449,5 @@
 	} // if
 	return -1;
-}
+} // ilong2
 
 
Index: src/Parser/DeclarationNode.cc
===================================================================
--- src/Parser/DeclarationNode.cc	(revision 88f15ae7977cd21fe85f845fd0a70397546352f8)
+++ src/Parser/DeclarationNode.cc	(revision f14d956b47dd08a8c9a556c05f84437d6a9ca651)
@@ -10,6 +10,6 @@
 // Created On       : Sat May 16 12:34:05 2015
 // Last Modified By : Peter A. Buhr
-// Last Modified On : Thu Apr 19 15:09:29 2018
-// Update Count     : 1062
+// Last Modified On : Fri Apr 20 22:37:20 2018
+// Update Count     : 1063
 //
 
@@ -562,5 +562,5 @@
 	checkQualifiers( type, q->type );
 	if ( (builtin == Zero || builtin == One) && error.length() == 0 ) {
-		SemanticWarning( yylloc, Warning::BadQualifiersZeroOne, Type::QualifiersNames[log2( q->type->qualifiers.val )], builtinTypeNames[builtin] );
+		SemanticWarning( yylloc, Warning::BadQualifiersZeroOne, Type::QualifiersNames[ilog2( q->type->qualifiers.val )], builtinTypeNames[builtin] );
 //		appendError( error, string( "questionable qualifiers" ) );
 	} // if
