Skip to content

Commit

Permalink
fix(fmt/mol2): silence warning message when trailing blanks found (#296)
Browse files Browse the repository at this point in the history
  • Loading branch information
jnooree authored Apr 11, 2024
1 parent 3cb9514 commit de7912a
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion src/fmt/mol2.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -188,7 +188,8 @@ constexpr auto atom_line = *x3::omit[x3::blank] //
>> -(+x3::omit[x3::blank] //
>> uint_trailing_blanks //
>> -(nonblank_trailing_blanks //
>> -x3::double_));
>> -x3::double_))
>> *x3::omit[x3::blank];
using AtomLine = std::tuple<
unsigned int, std::string, absl::InlinedVector<double, 3>, std::string,
boost::optional<std::string>,
Expand Down

0 comments on commit de7912a

Please sign in to comment.