summaryrefslogtreecommitdiffstats
path: root/Tests/Jump
diff options
context:
space:
mode:
Diffstat (limited to 'Tests/Jump')
-rw-r--r--Tests/Jump/Executable/jumpExecutable.cxx4
-rw-r--r--Tests/Jump/Library/Shared/jumpShared.cxx9
-rw-r--r--Tests/Jump/Library/Static/jumpStatic.cxx5
3 files changed, 12 insertions, 6 deletions
diff --git a/Tests/Jump/Executable/jumpExecutable.cxx b/Tests/Jump/Executable/jumpExecutable.cxx
index 7a050c7..6fa2683 100644
--- a/Tests/Jump/Executable/jumpExecutable.cxx
+++ b/Tests/Jump/Executable/jumpExecutable.cxx
@@ -1,7 +1,7 @@
#ifdef _WIN32
-# define JUMP_IMPORT __declspec(dllimport)
+#define JUMP_IMPORT __declspec(dllimport)
#else
-# define JUMP_IMPORT extern
+#define JUMP_IMPORT extern
#endif
extern int jumpStatic();
diff --git a/Tests/Jump/Library/Shared/jumpShared.cxx b/Tests/Jump/Library/Shared/jumpShared.cxx
index f500058..7c4dee9 100644
--- a/Tests/Jump/Library/Shared/jumpShared.cxx
+++ b/Tests/Jump/Library/Shared/jumpShared.cxx
@@ -1,7 +1,10 @@
#ifdef _WIN32
-# define JUMP_EXPORT __declspec(dllexport)
+#define JUMP_EXPORT __declspec(dllexport)
#else
-# define JUMP_EXPORT
+#define JUMP_EXPORT
#endif
-JUMP_EXPORT int jumpShared() { return 0; }
+JUMP_EXPORT int jumpShared()
+{
+ return 0;
+}
diff --git a/Tests/Jump/Library/Static/jumpStatic.cxx b/Tests/Jump/Library/Static/jumpStatic.cxx
index 1f92eb9..9b169cf 100644
--- a/Tests/Jump/Library/Static/jumpStatic.cxx
+++ b/Tests/Jump/Library/Static/jumpStatic.cxx
@@ -1 +1,4 @@
-int jumpStatic() { return 0; }
+int jumpStatic()
+{
+ return 0;
+}