mirror of
https://gitlab.com/libeigen/eigen.git
synced 2025-04-23 01:59:38 +08:00
Fix extra semicolon in XprHelper
This commit is contained in:
parent
ba47341a14
commit
6d829e766f
@ -825,7 +825,7 @@ struct block_xpr_helper {
|
|||||||
|
|
||||||
// For regular block expressions, simply forward along the InnerPanel argument,
|
// For regular block expressions, simply forward along the InnerPanel argument,
|
||||||
// which is set when calling row/column expressions.
|
// which is set when calling row/column expressions.
|
||||||
static constexpr bool is_inner_panel(bool inner_panel) { return inner_panel; };
|
static constexpr bool is_inner_panel(bool inner_panel) { return inner_panel; }
|
||||||
|
|
||||||
// Only enable non-const base function if XprType is not const (otherwise we get a duplicate definition).
|
// Only enable non-const base function if XprType is not const (otherwise we get a duplicate definition).
|
||||||
template<typename T = XprType, typename EnableIf=std::enable_if_t<!std::is_const<T>::value>>
|
template<typename T = XprType, typename EnableIf=std::enable_if_t<!std::is_const<T>::value>>
|
||||||
|
Loading…
x
Reference in New Issue
Block a user