Skip to content
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
5 changes: 3 additions & 2 deletions include/boost/date_time/time_facet.hpp
Original file line number Diff line number Diff line change
Expand Up @@ -19,6 +19,7 @@
#include <sstream>
#include <string>
#include <boost/assert.hpp>
#include <boost/config.hpp>
#include <boost/lexical_cast.hpp>
#include <boost/throw_exception.hpp>
#include <boost/range/as_literal.hpp>
Expand Down Expand Up @@ -866,7 +867,7 @@ namespace date_time {
break;
// %s is the same as %S%f so we drop through into %f
}
/* Falls through. */
BOOST_FALLTHROUGH;
case 'f':
{
// check for decimal, check special_values if missing
Expand Down Expand Up @@ -1140,7 +1141,7 @@ namespace date_time {
// %s is the same as %S%f so we drop through into %f if we are
// not at the end of the stream
}
/* Falls through. */
BOOST_FALLTHROUGH;
case 'f':
{
// check for decimal, check SV if missing
Expand Down