Skip to content
GitLab
Menu
Projects
Groups
Snippets
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
Menu
Open sidebar
Stack Of Tasks
pinocchio
Commits
b112dc30
Verified
Commit
b112dc30
authored
Jan 15, 2020
by
Justin Carpentier
Browse files
math/multiprecision: fix issue with old Eigen version
parent
64a759c8
Changes
1
Hide whitespace changes
Inline
Side-by-side
src/math/multiprecision.hpp
View file @
b112dc30
...
...
@@ -130,7 +130,9 @@ namespace Eigen
template
<
class
tag
,
class
Arg1
,
class
Arg2
,
class
Arg3
,
class
Arg4
>
struct
conj_impl
<
boost
::
multiprecision
::
detail
::
expression
<
tag
,
Arg1
,
Arg2
,
Arg3
,
Arg4
>
,
true
>
{
#if EIGEN_VERSION_AT_LEAST(3,2,90)
EIGEN_DEVICE_FUNC
#endif
static
inline
typename
boost
::
multiprecision
::
detail
::
expression
<
tag
,
Arg1
,
Arg2
,
Arg3
,
Arg4
>::
result_type
run
(
const
typename
boost
::
multiprecision
::
detail
::
expression
<
tag
,
Arg1
,
Arg2
,
Arg3
,
Arg4
>&
x
)
{
return
conj
(
x
);
...
...
Write
Preview
Supports
Markdown
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