mirror of
https://github.com/RPCS3/llvm-mirror.git
synced 2025-02-06 12:16:59 +00:00
a49eeeece4
llvm-svn: 8655
10 lines
108 B
C++
10 lines
108 B
C++
struct duration {
|
|
duration operator/=(int c) {
|
|
return *this;
|
|
}
|
|
};
|
|
|
|
void a000090() {
|
|
duration() /= 1;
|
|
}
|