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
Clean up some minor white space issues in trans-decl.c and trans-expr.c
[official-gcc.git]
/
gcc
/
testsuite
/
g++.dg
/
lto
/
20091026-1_1.C
blob
28816100e290077e05245a0600ea41936221f418
1
#include "20091026-1_a.h"
2
extern cHead networks;
3
class cNetworkType;
4
inline cNetworkType *findNetwork(const char *s)
5
{
6
return (cNetworkType *)networks.find(s);
7
}
8
int run(const char *opt_network_name)
9
{
10
cNetworkType *network = findNetwork(opt_network_name);
11
if (!network)
12
throw 1;
13
}
14