Fix cursor storage (#120)

This commit is contained in:
Yaya-Cout
2022-01-10 20:53:38 +01:00
committed by GitHub
parent 685e73c52d
commit 8126e0da7e
9 changed files with 19 additions and 20 deletions

View File

@@ -46,7 +46,7 @@ public:
/* This function allows to convert Evaluation to derived Evaluation.
*
* We could have overriden the operator T(). However, even with the
* 'explicit' keyword (which prevents implicit casts), direct initilization
* 'explicit' keyword (which prevents implicit casts), direct initialization
* are enable which can lead to weird code:
* ie, you can write: 'Complex<float> a(2); MatrixComplex<float> b(a);'
* */