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
diff options
context:
space:
mode:
authorvng <viktor.govako@gmail.com>2010-12-30 00:57:36 +0300
committerAlex Zolotarev <alex@maps.me>2015-09-23 01:08:54 +0300
commit8cf2cb5d225f4ff00592faea9fa7201574a9342f (patch)
tree8a2ac966d36ed4568106de4b56a501a5cf959e0b /coding/file_writer.hpp
parentb506aacbb6eb10a160f0848ad5393c7b8083df47 (diff)
Fix compilation (2nd try).
Diffstat (limited to 'coding/file_writer.hpp')
-rw-r--r--coding/file_writer.hpp5
1 files changed, 3 insertions, 2 deletions
diff --git a/coding/file_writer.hpp b/coding/file_writer.hpp
index ef155d4e3a..fd246ffa3d 100644
--- a/coding/file_writer.hpp
+++ b/coding/file_writer.hpp
@@ -20,9 +20,10 @@ public:
// Append to a file. Writing operations append data at the end of the file.
// The file is created if it does not exist.
// Seek should not be called, if file is opened for append.
- OP_APPEND = 3};
+ OP_APPEND = 3
+ };
- FileWriter(FileWriter & rhs);
+ FileWriter(FileWriter const & rhs);
explicit FileWriter(string const & fileName, Op operation = OP_WRITE_TRUNCATE);
~FileWriter();