add the possibility to specialize assign_impl and still call the default implementations.

(yes I know this change will be deprecated as soon as the evaluators will be in shape but I need this now)
This commit is contained in:
Gael Guennebaud
2011-08-18 10:19:25 +02:00
parent ca7d3dca79
commit 5734ee6df4
2 changed files with 33 additions and 25 deletions

View File

@@ -253,6 +253,13 @@ enum {
CompleteUnrolling
};
/** \internal \ingroup enums
* Enum to specify whether to use the default (built-in) implementation or the specialization. */
enum {
Specialized,
BuiltIn
};
/** \ingroup enums
* Enum containing possible values for the \p _Options template parameter of
* Matrix, Array and BandMatrix. */