summaryrefslogtreecommitdiffstats
path: root/Tests/BundleTest/BundleTest.cxx
diff options
context:
space:
mode:
Diffstat (limited to 'Tests/BundleTest/BundleTest.cxx')
-rw-r--r--Tests/BundleTest/BundleTest.cxx8
1 files changed, 5 insertions, 3 deletions
diff --git a/Tests/BundleTest/BundleTest.cxx b/Tests/BundleTest/BundleTest.cxx
index a66d601..a5e8f59 100644
--- a/Tests/BundleTest/BundleTest.cxx
+++ b/Tests/BundleTest/BundleTest.cxx
@@ -8,13 +8,15 @@ int main(int argc, char* argv[])
{
printf("Started with: %d arguments\n", argc);
- // Call a CoreFoundation function... but pull in the link dependency on "-framework
- // CoreFoundation" via CMake's dependency chaining mechanism. This code exists to
+ // Call a CoreFoundation function... but pull in the link dependency on
+ // "-framework
+ // CoreFoundation" via CMake's dependency chaining mechanism. This code
+ // exists to
// verify that the chaining mechanism works with "-framework blah" style
// link dependencies.
//
CFBundleRef br = CFBundleGetMainBundle();
- (void) br;
+ (void)br;
return foo(argv[0]);
}