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:
Diffstat (limited to '3party/Alohalytics/src/file_manager.h')
-rw-r--r--3party/Alohalytics/src/file_manager.h9
1 files changed, 5 insertions, 4 deletions
diff --git a/3party/Alohalytics/src/file_manager.h b/3party/Alohalytics/src/file_manager.h
index 7240033a2e..9e635eb16e 100644
--- a/3party/Alohalytics/src/file_manager.h
+++ b/3party/Alohalytics/src/file_manager.h
@@ -22,8 +22,8 @@ OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
SOFTWARE.
*******************************************************************************/
-#ifndef FILE_MANAGER_HPP
-#define FILE_MANAGER_HPP
+#ifndef FILE_MANAGER_H
+#define FILE_MANAGER_H
#include <string>
#include <functional>
@@ -52,7 +52,7 @@ struct FileManager {
if (file_path.empty()) {
return std::string();
}
- std::string::size_type slash = file_path.find_last_of(kDirectorySeparator);
+ const std::string::size_type slash = file_path.find_last_of(kDirectorySeparator);
if (slash == std::string::npos) {
return std::string(".");
}
@@ -86,9 +86,10 @@ struct FileManager {
static void ForEachFileInDir(std::string directory, std::function<bool(const std::string & full_path)> lambda);
// Returns negative value on error and if full_path_to_file is a directory.
+ // TODO(AlexZ): Should consider approach with exceptions and uint64_t return type.
static int64_t GetFileSize(const std::string & full_path_to_file);
};
} // namespace alohalytics
-#endif // FILE_MANAGER_HPP
+#endif // FILE_MANAGER_H