]> www.ginac.de Git - ginac.git/blobdiff - ginac/archive.cpp
determinant_algo::laplace sometimes had the sign wrong because of the change
[ginac.git] / ginac / archive.cpp
index 43b2667cac1c9e0b80c59df913f516726820da6b..cdd76192ea51d9283351ebb74838abc9c1276649 100644 (file)
@@ -457,15 +457,15 @@ const archive_node &archive_node::find_ex_node(const std::string &name, unsigned
 }
 
 
-void archive_node::get_properties(std::vector<archive_node::property_info> &v) const
+void archive_node::get_properties(propinfovector &v) const
 {
        v.clear();
        std::vector<property>::const_iterator i = props.begin(), iend = props.end();
        while (i != iend) {
                property_type type = i->type;
-               string name = a.unatomize(i->name);
+               std::string name = a.unatomize(i->name);
 
-               std::vector<property_info>::iterator a = v.begin(), aend = v.end();
+               propinfovector::iterator a = v.begin(), aend = v.end();
                bool found = false;
                while (a != aend) {
                        if (a->type == type && a->name == name) {