Skip to content
GitLab
Menu
Projects
Groups
Snippets
Loading...
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
Menu
Open sidebar
OpenDAS
torch-spline-conv
Commits
e1538351
Commit
e1538351
authored
Feb 28, 2020
by
rusty1s
Browse files
windows fix
parent
6056f778
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
3 additions
and
3 deletions
+3
-3
csrc/cpu/utils.h
csrc/cpu/utils.h
+3
-3
No files found.
csrc/cpu/utils.h
View file @
e1538351
...
...
@@ -9,15 +9,15 @@
[&] { \
switch (degree) { \
case 1: { \
const int64_t DEGREE = 1;
\
static
const
expr
int64_t DEGREE = 1; \
return __VA_ARGS__(); \
} \
case 2: { \
const int64_t DEGREE = 2;
\
static
const
expr
int64_t DEGREE = 2; \
return __VA_ARGS__(); \
} \
case 3: { \
const int64_t DEGREE = 3;
\
static
const
expr
int64_t DEGREE = 3; \
return __VA_ARGS__(); \
} \
default: \
...
...
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