Move some compile-time dispatch to runtime
The runtime performance is likely to be negligible, but compile times need every improvement they can get.
This commit is contained in:
parent
feca97dfde
commit
85e14c5fb5
4 changed files with 42 additions and 11 deletions
|
@ -134,7 +134,7 @@ public:
|
|||
// 1 for negation (conditionally added later)
|
||||
dest = lhs;
|
||||
dest += delim;
|
||||
dest += Internal::OperatorTraits<Op>::getName();
|
||||
dest += Internal::operatorName(Op);
|
||||
dest += delim;
|
||||
dest += rhs;
|
||||
}
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue