Regenerated single include following merge

This commit is contained in:
Phil Nash 2012-11-01 08:28:26 +00:00
parent ce612bf656
commit e0a40e2ced
1 changed files with 7 additions and 3 deletions

View File

@ -1,5 +1,5 @@
/*
* Generated: 2012-10-31 18:04:01.157950
* Generated: 2012-11-01 08:27:51.720005
* ----------------------------------------------------------
* This file has been merged from multiple headers. Please don't edit it directly
* Copyright (c) 2012 Two Blue Cubes Ltd. All rights reserved.
@ -1369,6 +1369,8 @@ namespace Catch {
m_remainder += c;
}
TagExtracter& operator=(const TagExtracter&);
std::set<std::string>& m_tags;
std::string m_remainder;
};
@ -1472,6 +1474,8 @@ namespace Catch {
m_exp.m_tagSets.push_back( m_currentTagSet );
}
TagExpressionParser& operator=(const TagExpressionParser&);
bool m_isNegated;
TagSet m_currentTagSet;
TagExpression& m_exp;
@ -4883,7 +4887,7 @@ namespace Catch {
if( isatty( fileno(stdout) ) ) {
switch( colour ) {
case TextColour::FileName:
std::cout << colourEscape << "[0m"; // white
std::cout << colourEscape << "[0m"; // white/ normal
break;
case TextColour::ResultError:
std::cout << colourEscape << "[1;31m"; // bold red
@ -4904,7 +4908,7 @@ namespace Catch {
std::cout << colourEscape << "[0;33m"; // yellow
break;
case TextColour::None:
std::cout << colourEscape << "[0m"; // reset to white
std::cout << colourEscape << "[0m"; // reset
}
}
}