summaryrefslogtreecommitdiff
path: root/src/times.cc
diff options
context:
space:
mode:
authorJohn Wiegley <johnw@newartisans.com>2009-10-25 05:40:10 -0400
committerJohn Wiegley <johnw@newartisans.com>2009-10-25 05:40:10 -0400
commitf25a32c92c90a65b4ec341ad703c8e61f615d48e (patch)
tree2db272399171b0871d57d794cbb81351de2c4fee /src/times.cc
parentb061c8082f02a105cc912a42a523036469a732ac (diff)
downloadfork-ledger-f25a32c92c90a65b4ec341ad703c8e61f615d48e.tar.gz
fork-ledger-f25a32c92c90a65b4ec341ad703c8e61f615d48e.tar.bz2
fork-ledger-f25a32c92c90a65b4ec341ad703c8e61f615d48e.zip
Whitespace and comment changes
Diffstat (limited to 'src/times.cc')
-rw-r--r--src/times.cc20
1 files changed, 10 insertions, 10 deletions
diff --git a/src/times.cc b/src/times.cc
index a00692b4..85deceec 100644
--- a/src/times.cc
+++ b/src/times.cc
@@ -35,7 +35,7 @@
namespace ledger {
-date_time::weekdays start_of_week = gregorian::Sunday;
+date_time::weekdays start_of_week = gregorian::Sunday;
//#define USE_BOOST_FACETS 1
@@ -50,7 +50,7 @@ namespace {
InputFacetType * input_facet;
OutputFacetType * output_facet;
std::string temp_string;
-#endif
+#endif // USE_BOOST_FACETS
public:
bool has_year;
@@ -67,7 +67,7 @@ namespace {
output_facet = new OutputFacetType(fmt_str);
output_stream.imbue(std::locale(std::locale::classic(), output_facet));
}
-#endif
+#endif // USE_BOOST_FACETS
}
void set_format(const char * fmt) {
@@ -79,7 +79,7 @@ namespace {
input_facet->format(fmt_str);
else
output_facet->format(fmt_str);
-#endif
+#endif // USE_BOOST_FACETS
}
T parse(const char * str) {
@@ -92,12 +92,12 @@ namespace {
output_stream.clear();
output_stream << when;
return output_stream.str();
-#else
+#else // USE_BOOST_FACETS
std::tm data(to_tm(when));
char buf[128];
std::strftime(buf, 127, fmt_str, &data);
return buf;
-#endif
+#endif // USE_BOOST_FACETS
}
};
@@ -124,14 +124,14 @@ namespace {
input_stream.peek() != EOF)
return datetime_t();
return when;
-#else
+#else // USE_BOOST_FACETS
std::tm data;
std::memset(&data, 0, sizeof(std::tm));
if (strptime(str, fmt_str, &data))
return posix_time::ptime_from_tm(data);
else
return datetime_t();
-#endif
+#endif // USE_BOOST_FACETS
}
template <>
@@ -157,7 +157,7 @@ namespace {
input_stream.peek() != EOF)
return date_t();
return when;
-#else
+#else // USE_BOOST_FACETS
std::tm data;
std::memset(&data, 0, sizeof(std::tm));
data.tm_mday = 1; // some formats have no day
@@ -165,7 +165,7 @@ namespace {
return gregorian::date_from_tm(data);
else
return date_t();
-#endif
+#endif // USE_BOOST_FACETS
}
typedef temporal_io_t<datetime_t, posix_time::time_input_facet,