repo.or.cz
/
llvm-project.git
/
blob
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
log
|
graphiclog1
|
graphiclog2
|
commit
|
commitdiff
|
tree
|
refs
|
edit
|
fork
blame
|
history
|
raw
|
HEAD
[clang] Implement lifetime analysis for lifetime_capture_by(X) (#115921)
[llvm-project.git]
/
clang
/
test
/
Modules
/
Inputs
/
PR27699
/
streambuf
blob
30ea73d230d156c116bd88b5397b01c708b43734
1
#ifndef STREAMBUF
2
#define STREAMBUF
3
template <typename> struct basic_streambuf {
4
basic_streambuf(const basic_streambuf &);
5
};
6
template <typename T> basic_streambuf<T>::basic_streambuf(const basic_streambuf &) = default;
7
#endif