| 
					
				 | 
			
			
				@@ -2225,7 +2225,7 @@ bool cmake::IsMessageTypeVisible(cmake::MessageType t) 
			 | 
		
	
		
			
				 | 
				 | 
			
			
				   return isVisible; 
			 | 
		
	
		
			
				 | 
				 | 
			
			
				 } 
			 | 
		
	
		
			
				 | 
				 | 
			
			
				  
			 | 
		
	
		
			
				 | 
				 | 
			
			
				-bool cmake::PrintMessagePreamble(cmake::MessageType t, std::ostream& msg) 
			 | 
		
	
		
			
				 | 
				 | 
			
			
				+static bool printMessagePreamble(cmake::MessageType t, std::ostream& msg) 
			 | 
		
	
		
			
				 | 
				 | 
			
			
				 { 
			 | 
		
	
		
			
				 | 
				 | 
			
			
				   // Construct the message header. 
			 | 
		
	
		
			
				 | 
				 | 
			
			
				   if (t == cmake::FATAL_ERROR) { 
			 | 
		
	
	
		
			
				| 
					
				 | 
			
			
				@@ -2312,7 +2312,7 @@ void cmake::IssueMessage(cmake::MessageType t, std::string const& text, 
			 | 
		
	
		
			
				 | 
				 | 
			
			
				   } 
			 | 
		
	
		
			
				 | 
				 | 
			
			
				  
			 | 
		
	
		
			
				 | 
				 | 
			
			
				   std::ostringstream msg; 
			 | 
		
	
		
			
				 | 
				 | 
			
			
				-  if (!this->PrintMessagePreamble(t, msg)) { 
			 | 
		
	
		
			
				 | 
				 | 
			
			
				+  if (!printMessagePreamble(t, msg)) { 
			 | 
		
	
		
			
				 | 
				 | 
			
			
				     return; 
			 | 
		
	
		
			
				 | 
				 | 
			
			
				   } 
			 | 
		
	
		
			
				 | 
				 | 
			
			
				  
			 |