Skip to content
GitLab
Menu
Projects
Groups
Snippets
Loading...
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in
Toggle navigation
Menu
Open sidebar
tsoc
openmm
Commits
bd333a1b
Unverified
Commit
bd333a1b
authored
May 22, 2020
by
peastman
Committed by
GitHub
May 22, 2020
Browse files
Merge pull request #2693 from thtrummer/master
Removed name of variadic argument list
parents
15d95f7a
f0ac4661
Changes
1
Show whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
4 additions
and
4 deletions
+4
-4
platforms/common/src/kernels/customIntegratorPerDof.cc
platforms/common/src/kernels/customIntegratorPerDof.cc
+4
-4
No files found.
platforms/common/src/kernels/customIntegratorPerDof.cc
View file @
bd333a1b
...
...
@@ -3,8 +3,8 @@ typedef double TempType;
typedef
double3
TempType3
;
typedef
double4
TempType4
;
#define make_TempType3(
a
...) make_double3(
a
)
#define make_TempType4(
a
...) make_double4(
a
)
#define make_TempType3(...) make_double3(
__VA_ARGS__
)
#define make_TempType4(...) make_double4(
__VA_ARGS__
)
#define convertToTempType3(a) make_double3((a).x, (a).y, (a).z)
#define convertToTempType4(a) make_double4((a).x, (a).y, (a).z, (a).w)
...
...
@@ -16,8 +16,8 @@ typedef float TempType;
typedef
float3
TempType3
;
typedef
float4
TempType4
;
#define make_TempType3(
a
...) make_float3(
a
)
#define make_TempType4(
a
...) make_float4(
a
)
#define make_TempType3(...) make_float3(
__VA_ARGS__
)
#define make_TempType4(...) make_float4(
__VA_ARGS__
)
#define convertToTempType3(a) make_float3((a).x, (a).y, (a).z)
#define convertToTempType4(a) make_float4((a).x, (a).y, (a).z, (a).w)
#endif
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
.
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment