Skip to content

Commit 561dcf4

Browse files
jlack1987jlack
andauthored
Inline operator== function to prevent multiple includes (#60)
Co-authored-by: jlack <[email protected]>
1 parent eb17fee commit 561dcf4

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

data_tamer_cpp/include/data_tamer_parser/data_tamer_parser.hpp

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -207,7 +207,7 @@ inline bool GetBit(BufferSpan mask, size_t index)
207207
return hash;
208208
}
209209

210-
bool TypeField::operator==(const TypeField& other) const
210+
inline bool TypeField::operator==(const TypeField& other) const
211211
{
212212
return is_vector == other.is_vector && type == other.type &&
213213
array_size == other.array_size && field_name == other.field_name &&

0 commit comments

Comments
 (0)