
I couldn't get something /really/ obvious, and I imagine Richard Smith might be able to provide some text explaining the sequence of steps that's demonstrated by these files - but at least it's a bit simpler now. llvm-svn: 218840
14 lines
202 B
C++
14 lines
202 B
C++
#ifndef SECONDHEADER
|
|
#define SECONDHEADER
|
|
|
|
#include "vector"
|
|
|
|
template <class T>
|
|
struct Address {};
|
|
|
|
template <>
|
|
struct Address<std::vector<bool>>
|
|
: Address<std::vector<bool>::iterator> {};
|
|
|
|
#endif
|