summaryrefslogtreecommitdiff
path: root/Tests/CFBundleTest
diff options
context:
space:
mode:
authorKitware Robot <kwrobot@kitware.com>2016-05-16 10:34:04 -0400
committerBrad King <brad.king@kitware.com>2016-05-16 16:05:19 -0400
commitd9fd2f5402eeaa345691313658e02b51038f570b (patch)
treedca71b9a7e267f4c6300da3eb770415381726785 /Tests/CFBundleTest
parent82df6deaafb36cbbfd450202bb20b320f637751a (diff)
downloadcmake-d9fd2f5402eeaa345691313658e02b51038f570b.tar.gz
Revise C++ coding style using clang-format
Run the `Utilities/Scripts/clang-format.bash` script to update all our C++ code to a new style defined by `.clang-format`. Use `clang-format` version 3.8. * If you reached this commit for a line in `git blame`, re-run the blame operation starting at the parent of this commit to see older history for the content. * See the parent commit for instructions to rebase a change across this style transition commit.
Diffstat (limited to 'Tests/CFBundleTest')
-rw-r--r--Tests/CFBundleTest/np_macmain.cpp17
1 files changed, 8 insertions, 9 deletions
diff --git a/Tests/CFBundleTest/np_macmain.cpp b/Tests/CFBundleTest/np_macmain.cpp
index 78004d002c..b5a4226870 100644
--- a/Tests/CFBundleTest/np_macmain.cpp
+++ b/Tests/CFBundleTest/np_macmain.cpp
@@ -8,7 +8,6 @@
doing anything useful.
\***********************************************************/
-
#include <stdio.h>
typedef void (*NPP_ShutdownProcPtr)(void);
@@ -20,9 +19,9 @@ struct NPNetscapeFuncs;
struct NPPluginFuncs;
extern "C" {
- NPError NP_Initialize(NPNetscapeFuncs *browserFuncs);
- NPError NP_GetEntryPoints(NPPluginFuncs *pluginFuncs);
- NPError NP_Shutdown(void);
+NPError NP_Initialize(NPNetscapeFuncs* browserFuncs);
+NPError NP_GetEntryPoints(NPPluginFuncs* pluginFuncs);
+NPError NP_Shutdown(void);
}
#pragma GCC visibility pop
@@ -33,17 +32,17 @@ void initPluginModule()
NPError NP_GetEntryPoints(NPPluginFuncs* pFuncs)
{
- printf("NP_GetEntryPoints()\n");
- return 0;
+ printf("NP_GetEntryPoints()\n");
+ return 0;
}
NPError NP_Initialize(NPNetscapeFuncs* pFuncs)
{
- printf("NP_Initialize()\n");
- return 0;
+ printf("NP_Initialize()\n");
+ return 0;
}
NPError NP_Shutdown()
{
- return 0;
+ return 0;
}