about summary refs log tree commit diff stats
path: root/cpp/031address.cc
diff options
context:
space:
mode:
Diffstat (limited to 'cpp/031address.cc')
-rw-r--r--cpp/031address.cc4
1 files changed, 2 insertions, 2 deletions
diff --git a/cpp/031address.cc b/cpp/031address.cc
index fd9037b1..f84af8d7 100644
--- a/cpp/031address.cc
+++ b/cpp/031address.cc
@@ -115,14 +115,14 @@ base = canonize(base);
 
 :(code)
 bool has_property(reagent x, string name) {
-  for (size_t i = 0; i < x.properties.size(); ++i) {
+  for (index_t i = 0; i < x.properties.size(); ++i) {
     if (x.properties[i].first == name) return true;
   }
   return false;
 }
 
 vector<string> property(const reagent& r, const string& name) {
-  for (size_t p = 0; p != r.properties.size(); ++p) {
+  for (index_t p = 0; p != r.properties.size(); ++p) {
     if (r.properties[p].first == name)
       return r.properties[p].second;
   }