File tree 2 files changed +1
-12
lines changed
2 files changed +1
-12
lines changed Original file line number Diff line number Diff line change @@ -118,7 +118,7 @@ inline uint32_t Environment::DomainFlag::count() const {
118
118
return fields_[kCount ];
119
119
}
120
120
121
- inline Environment::TickInfo::TickInfo () : in_tick_( false ) {
121
+ inline Environment::TickInfo::TickInfo () {
122
122
for (int i = 0 ; i < kFieldsCount ; ++i)
123
123
fields_[i] = 0 ;
124
124
}
@@ -131,10 +131,6 @@ inline int Environment::TickInfo::fields_count() const {
131
131
return kFieldsCount ;
132
132
}
133
133
134
- inline bool Environment::TickInfo::in_tick () const {
135
- return in_tick_;
136
- }
137
-
138
134
inline uint32_t Environment::TickInfo::index () const {
139
135
return fields_[kIndex ];
140
136
}
@@ -143,10 +139,6 @@ inline uint32_t Environment::TickInfo::length() const {
143
139
return fields_[kLength ];
144
140
}
145
141
146
- inline void Environment::TickInfo::set_in_tick (bool value) {
147
- in_tick_ = value;
148
- }
149
-
150
142
inline void Environment::TickInfo::set_index (uint32_t value) {
151
143
fields_[kIndex ] = value;
152
144
}
Original file line number Diff line number Diff line change @@ -331,10 +331,8 @@ class Environment {
331
331
public:
332
332
inline uint32_t * fields ();
333
333
inline int fields_count () const ;
334
- inline bool in_tick () const ;
335
334
inline uint32_t index () const ;
336
335
inline uint32_t length () const ;
337
- inline void set_in_tick (bool value);
338
336
inline void set_index (uint32_t value);
339
337
340
338
private:
@@ -348,7 +346,6 @@ class Environment {
348
346
};
349
347
350
348
uint32_t fields_[kFieldsCount ];
351
- bool in_tick_;
352
349
353
350
DISALLOW_COPY_AND_ASSIGN (TickInfo);
354
351
};
You can’t perform that action at this time.
0 commit comments