Skip to content

Commit

Permalink
get rid of extra semicolon
Browse files Browse the repository at this point in the history
  • Loading branch information
voivoid committed May 7, 2018
1 parent d5adfb4 commit f06a9df
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/parsers.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -229,7 +229,7 @@ void write(const Document& document, Ostream& stream, const size_t documentSize)

#define BSON_INSTANTIATE_FUNCS(type) \
template type read(Istream& iter); \
template void write(const type value, Ostream& iter);
template void write(const type value, Ostream& iter)

BSON_INSTANTIATE_FUNCS(Byte);
BSON_INSTANTIATE_FUNCS(Int32);
Expand Down

0 comments on commit f06a9df

Please sign in to comment.