summaryrefslogtreecommitdiff
path: root/src/expr/attribute.cpp
diff options
context:
space:
mode:
authorTim King <taking@cs.nyu.edu>2018-08-13 09:25:26 -0700
committerGitHub <noreply@github.com>2018-08-13 09:25:26 -0700
commit957b02e415f60e725da569f1d7c0e2d1276cb3fa (patch)
treee588e05f4c1fb2320f7902618f49d188d043517d /src/expr/attribute.cpp
parentb62055f1204a0846eef728b2b62e5fc77df4048c (diff)
Removing support for T* and const T* attributes. (#2297)
* Removing support for T* and const T* attributes. These are unused.
Diffstat (limited to 'src/expr/attribute.cpp')
-rw-r--r--src/expr/attribute.cpp5
1 files changed, 0 insertions, 5 deletions
diff --git a/src/expr/attribute.cpp b/src/expr/attribute.cpp
index eeb6d00a0..9481cde99 100644
--- a/src/expr/attribute.cpp
+++ b/src/expr/attribute.cpp
@@ -50,7 +50,6 @@ void AttributeManager::deleteAllAttributes(NodeValue* nv) {
deleteFromTable(d_nodes, nv);
deleteFromTable(d_types, nv);
deleteFromTable(d_strings, nv);
- deleteFromTable(d_ptrs, nv);
}
void AttributeManager::deleteAllAttributes() {
@@ -60,7 +59,6 @@ void AttributeManager::deleteAllAttributes() {
deleteAllFromTable(d_nodes);
deleteAllFromTable(d_types);
deleteAllFromTable(d_strings);
- deleteAllFromTable(d_ptrs);
}
void AttributeManager::deleteAttributes(const AttrIdVec& atids) {
@@ -98,9 +96,6 @@ void AttributeManager::deleteAttributes(const AttrIdVec& atids) {
case AttrTableString:
deleteAttributesFromTable(d_strings, ids);
break;
- case AttrTablePointer:
- deleteAttributesFromTable(d_ptrs, ids);
- break;
case AttrTableCDBool:
case AttrTableCDUInt64:
generated by cgit on debian on lair
contact matthew@masot.net with questions or feedback