merge, explicit, ( should be it)
This commit is contained in:
		@@ -761,7 +761,7 @@ namespace convertible_from_any {
 | 
				
			|||||||
struct ConvertibleFromAny {
 | 
					struct ConvertibleFromAny {
 | 
				
			||||||
  ConvertibleFromAny(int a_value) : value(a_value) {}
 | 
					  ConvertibleFromAny(int a_value) : value(a_value) {}
 | 
				
			||||||
  template <typename T>
 | 
					  template <typename T>
 | 
				
			||||||
  explicit ConvertibleFromAny(const T& /*a_value*/) : value(-1) {
 | 
					  ConvertibleFromAny(const T& /*a_value*/) : value(-1) {
 | 
				
			||||||
    ADD_FAILURE() << "Conversion constructor called";
 | 
					    ADD_FAILURE() << "Conversion constructor called";
 | 
				
			||||||
  }
 | 
					  }
 | 
				
			||||||
  int value;
 | 
					  int value;
 | 
				
			||||||
 
 | 
				
			|||||||
		Reference in New Issue
	
	Block a user