2
0
mirror of https://github.com/boostorg/foreach.git synced 2026-02-14 00:32:18 +00:00

Merged revisions 61264,61449 via svnmerge from

https://svn.boost.org/svn/boost/trunk

........
  r61264 | eric_niebler | 2010-04-13 18:26:51 -0700 (Tue, 13 Apr 2010) | 1 line
  
  actually test the documented extension interface
........
  r61449 | dgregor | 2010-04-20 23:33:52 -0700 (Tue, 20 Apr 2010) | 1 line
  
  Default-initialized const objects of class type are ill-formed of the class does not have a user-declared default constructor
........


[SVN r61627]
This commit is contained in:
Eric Niebler
2010-04-27 20:08:09 +00:00
parent 3b7dedf19e
commit d0e5457833
2 changed files with 2 additions and 4 deletions

4
test/user_defined.cpp Executable file → Normal file
View File

@@ -16,10 +16,6 @@ Revision history:
namespace mine
{
struct dummy {};
}
namespace boost
{
char * range_begin(mine::dummy&) {return 0;}
char const * range_begin(mine::dummy const&) {return 0;}
char * range_end(mine::dummy&) {return 0;}