repo.or.cz
/
llvm.git
/
blob
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
log
|
graphiclog1
|
graphiclog2
|
commit
|
commitdiff
|
tree
|
refs
|
edit
|
fork
history
|
raw
|
HEAD
Move variable that's unused in an NDEBUG build inside the DEBUG() macro, fixing
[llvm.git]
/
test
/
FrontendObjC++
/
2010-08-04-Template.mm
blob
2ebfd3e17cefdfdf775e41b5006108103d88d28e
1
// RUN: %llvmgcc %s -S
2
struct TRunSoon {
3
template <class P1> static void Post() {}
4
};
5
6
@implementation TPrivsTableViewMainController
7
- (void) applyToEnclosed {
8
TRunSoon::Post<int>();
9
}
10
@end