mirror of
https://github.com/c64scene-ar/llvm-6502.git
synced 2024-11-01 00:11:00 +00:00
23 lines
287 B
C++
23 lines
287 B
C++
|
|
||
|
char* eback();
|
||
|
|
||
|
template<typename foo>
|
||
|
struct basic_filebuf {
|
||
|
char *instancevar;
|
||
|
|
||
|
void callee() {
|
||
|
instancevar += eback() != eback();
|
||
|
}
|
||
|
|
||
|
void caller();
|
||
|
};
|
||
|
|
||
|
|
||
|
template<typename _CharT>
|
||
|
void basic_filebuf<_CharT>::caller() {
|
||
|
callee();
|
||
|
}
|
||
|
|
||
|
|
||
|
template class basic_filebuf<char>;
|