repo.or.cz
/
official-gcc.git
/
blob
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
log
|
graphiclog1
|
graphiclog2
|
commit
|
commitdiff
|
tree
|
refs
|
edit
|
fork
blame
|
history
|
raw
|
HEAD
Match: Fold pow calls to ldexp when possible [PR57492]
[official-gcc.git]
/
gcc
/
testsuite
/
g++.dg
/
compat
/
eh
/
ctor1_y.C
blob
5478bb79c2d5cd007123dc46fdd1cb096edb35b4
1
extern bool was_f_in_Bar_destroyed;
2
3
#include "ctor1.h"
4
5
Foo::~Foo()
6
{
7
was_f_in_Bar_destroyed=true;
8
}
9
10
Bar::~Bar()
11
#if __cplusplus < 201103L
12
throw(int)
13
#else
14
noexcept(false)
15
#endif
16
{
17
throw 1;
18
}