summary refs log tree commit diff stats
path: root/lib/frame.h
diff options
context:
space:
mode:
Diffstat (limited to 'lib/frame.h')
-rw-r--r--lib/frame.h8
1 files changed, 4 insertions, 4 deletions
diff --git a/lib/frame.h b/lib/frame.h index 36e179e..e049584 100644 --- a/lib/frame.h +++ b/lib/frame.h
@@ -85,10 +85,10 @@ namespace verbly {
85 85
86 // Relationships to other objects 86 // Relationships to other objects
87 87
88 static const field word; 88 static const field words;
89 89
90 static field part(); 90 static field parts();
91 static field part(int index); 91 static field parts(int index);
92 92
93 private: 93 private:
94 bool valid_ = false; 94 bool valid_ = false;
@@ -96,7 +96,7 @@ namespace verbly {
96 int id_; 96 int id_;
97 int groupId_; 97 int groupId_;
98 int length_; 98 int length_;
99 std::vector<class part> parts_; 99 std::vector<part> parts_;
100 100
101 const database* db_; 101 const database* db_;
102 102