doxygen changes
doxygen has troubles differentiating between Cantera::vector_fp and std::vector<doublereal>. I don't know what to do.
This commit is contained in:
parent
92e460ca17
commit
9a8fe5b47e
3 changed files with 5 additions and 5 deletions
|
|
@ -959,7 +959,7 @@ namespace ctml {
|
|||
*
|
||||
* @note change the v to a std::vector to eliminate a doxygen error. No idea why doxygen needs this.
|
||||
*/
|
||||
int getFloatArray(const Cantera::XML_Node& node, Cantera::vector_fp & v,
|
||||
int getFloatArray(const Cantera::XML_Node& node, std::vector<doublereal> & v,
|
||||
const bool convert, const std::string unitsString,
|
||||
const std::string nodeName) {
|
||||
std::string::size_type icom;
|
||||
|
|
@ -1332,7 +1332,7 @@ namespace ctml {
|
|||
* @param coeffs Output vector of floats containing the floatArray information.
|
||||
*/
|
||||
void getFunction(const Cantera::XML_Node& node, std::string& type, doublereal& xmin,
|
||||
doublereal& xmax, Cantera::vector_fp & coeffs) {
|
||||
doublereal& xmax, std::vector<doublereal> & coeffs) {
|
||||
const XML_Node& c = node.child("floatArray");
|
||||
coeffs.clear();
|
||||
getFloatArray(c,coeffs);
|
||||
|
|
|
|||
|
|
@ -370,7 +370,7 @@ namespace ctml {
|
|||
* The default value for the node name is floatArray
|
||||
* @return Returns the number of floats read into v.
|
||||
*/
|
||||
int getFloatArray(const Cantera::XML_Node& node, Cantera::vector_fp & v,
|
||||
int getFloatArray(const Cantera::XML_Node& node, std::vector<doublereal> & v,
|
||||
const bool convert=true, const std::string unitsString="",
|
||||
const std::string nodeName = "floatArray");
|
||||
|
||||
|
|
@ -836,7 +836,7 @@ namespace ctml {
|
|||
* @param coeffs Output vector of floats containing the floatArray information.
|
||||
*/
|
||||
void getFunction(const Cantera::XML_Node& node, std::string& typeString,
|
||||
doublereal& xmin, doublereal& xmax, Cantera::vector_fp & coeffs);
|
||||
doublereal& xmin, doublereal& xmax, std::vector<doublereal> & coeffs);
|
||||
|
||||
//! Search the child nodes of the current node for an XML Node with a Title
|
||||
//! attribute of a given name.
|
||||
|
|
|
|||
|
|
@ -45,7 +45,7 @@
|
|||
* then it may be freed, always (and vica-versa).
|
||||
*
|
||||
* Where possible, the low leve routines
|
||||
* memcopy and memset are used to copy or zero memory.
|
||||
* memcpy and memset are used to copy or zero memory.
|
||||
*
|
||||
* No array bounds checking is ever done within these routines. buyer beware.
|
||||
* The bounds of arrays are not carried with the array object, ever.
|
||||
|
|
|
|||
Loading…
Add table
Reference in a new issue