@@ -47,109 +47,109 @@ template <class FieldAccessor,
4747 std::declval<FieldAccessor *>()->visit (int32_cref()))>
4848class field_accessor_adaptor : public field_instruction_visitor,
4949 private result_holder<Result> {
50- FieldAccessor &accssor_ ;
50+ FieldAccessor &accessor_ ;
5151
5252public:
53- field_accessor_adaptor (FieldAccessor &accssor ) : accssor_ (accssor ) {}
53+ field_accessor_adaptor (FieldAccessor &accessor ) : accessor_ (accessor ) {}
5454 virtual void visit (const int32_field_instruction *inst,
5555 void *storage) override {
5656 int32_cref ref (static_cast <value_storage *>(storage), inst);
57- this ->apply_visitor (accssor_ , ref);
57+ this ->apply_visitor (accessor_ , ref);
5858 }
5959
6060 virtual void visit (const uint32_field_instruction *inst,
6161 void *storage) override {
6262 uint32_cref ref (static_cast <value_storage *>(storage), inst);
63- this ->apply_visitor (accssor_ , ref);
63+ this ->apply_visitor (accessor_ , ref);
6464 }
6565
6666 virtual void visit (const int64_field_instruction *inst,
6767 void *storage) override {
6868 int64_cref ref (static_cast <value_storage *>(storage), inst);
69- this ->apply_visitor (accssor_ , ref);
69+ this ->apply_visitor (accessor_ , ref);
7070 }
7171
7272 virtual void visit (const uint64_field_instruction *inst,
7373 void *storage) override {
7474 uint64_cref ref (static_cast <value_storage *>(storage), inst);
75- this ->apply_visitor (accssor_ , ref);
75+ this ->apply_visitor (accessor_ , ref);
7676 }
7777
7878 virtual void visit (const decimal_field_instruction *inst,
7979 void *storage) override {
8080 decimal_cref ref (static_cast <value_storage *>(storage), inst);
81- this ->apply_visitor (accssor_ , ref);
81+ this ->apply_visitor (accessor_ , ref);
8282 }
8383
8484 virtual void visit (const ascii_field_instruction *inst,
8585 void *storage) override {
8686 ascii_string_cref ref (static_cast <value_storage *>(storage), inst);
87- this ->apply_visitor (accssor_ , ref);
87+ this ->apply_visitor (accessor_ , ref);
8888 }
8989
9090 virtual void visit (const unicode_field_instruction *inst,
9191 void *storage) override {
9292 unicode_string_cref ref (static_cast <value_storage *>(storage), inst);
93- this ->apply_visitor (accssor_ , ref);
93+ this ->apply_visitor (accessor_ , ref);
9494 }
9595
9696 virtual void visit (const byte_vector_field_instruction *inst,
9797 void *storage) override {
9898 byte_vector_cref ref (static_cast <value_storage *>(storage), inst);
99- this ->apply_visitor (accssor_ , ref);
99+ this ->apply_visitor (accessor_ , ref);
100100 }
101101
102102 virtual void visit (const int32_vector_field_instruction *inst,
103103 void *storage) override {
104104 int32_vector_cref ref (static_cast <value_storage *>(storage), inst);
105- this ->apply_visitor (accssor_ , ref);
105+ this ->apply_visitor (accessor_ , ref);
106106 }
107107
108108 virtual void visit (const uint32_vector_field_instruction *inst,
109109 void *storage) override {
110110 uint32_vector_cref ref (static_cast <value_storage *>(storage), inst);
111- this ->apply_visitor (accssor_ , ref);
111+ this ->apply_visitor (accessor_ , ref);
112112 }
113113
114114 virtual void visit (const int64_vector_field_instruction *inst,
115115 void *storage) override {
116116 int64_vector_cref ref (static_cast <value_storage *>(storage), inst);
117- this ->apply_visitor (accssor_ , ref);
117+ this ->apply_visitor (accessor_ , ref);
118118 }
119119
120120 virtual void visit (const uint64_vector_field_instruction *inst,
121121 void *storage) override {
122122 uint64_vector_cref ref (static_cast <value_storage *>(storage), inst);
123- this ->apply_visitor (accssor_ , ref);
123+ this ->apply_visitor (accessor_ , ref);
124124 }
125125
126126 virtual void visit (const group_field_instruction *inst,
127127 void *storage) override {
128128 group_cref ref (static_cast <value_storage *>(storage), inst);
129- this ->apply_visitor (accssor_ , ref, 0 );
129+ this ->apply_visitor (accessor_ , ref, 0 );
130130 }
131131
132132 virtual void visit (const sequence_field_instruction *inst,
133133 void *storage) override {
134134 sequence_cref ref (static_cast <value_storage *>(storage), inst);
135- this ->apply_visitor (accssor_ , ref, 0 );
135+ this ->apply_visitor (accessor_ , ref, 0 );
136136 }
137137
138138 virtual void visit (const template_instruction *, void *) override {
139139 // message_cref ref(static_cast<value_storage*>(storage), inst);
140- // this->apply_visitor(accssor_ , ref, 0);
140+ // this->apply_visitor(accessor_ , ref, 0);
141141 }
142142
143143 virtual void visit (const templateref_instruction *inst,
144144 void *storage) override {
145145 nested_message_cref ref (static_cast <value_storage *>(storage), inst);
146- this ->apply_visitor (accssor_ , ref, 0 );
146+ this ->apply_visitor (accessor_ , ref, 0 );
147147 }
148148
149149 virtual void visit (const enum_field_instruction *inst,
150150 void *storage) override {
151151 enum_cref ref (static_cast <value_storage *>(storage), inst);
152- this ->apply_visitor (accssor_ , ref);
152+ this ->apply_visitor (accessor_ , ref);
153153 }
154154
155155 using result_holder<Result>::get_result;
0 commit comments