Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/mapsme/omim.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
path: root/base
diff options
context:
space:
mode:
authorYuri Gorshenin <y@mmaps.me>2015-04-06 17:09:05 +0300
committerAlex Zolotarev <alex@maps.me>2015-09-23 02:41:37 +0300
commit5ed894e5c60310c6927be4485852046defe41a02 (patch)
treee5e774fec64b8338d9d41b9ff94114c638c4827a /base
parent90cd2f8c9a70e810b3b93931538ae1693d75bb54 (diff)
Style fixes.
Diffstat (limited to 'base')
-rw-r--r--base/timer.cpp3
1 files changed, 2 insertions, 1 deletions
diff --git a/base/timer.cpp b/base/timer.cpp
index 76ca3e3d1c..a7d979b80b 100644
--- a/base/timer.cpp
+++ b/base/timer.cpp
@@ -60,7 +60,8 @@ string FormatCurrentTime()
return s;
}
-uint32_t GenerateTimestamp(int year, int month, int day) {
+uint32_t GenerateTimestamp(int year, int month, int day)
+{
return (year - 100) * 10000 + (month + 1) * 100 + day;
}