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:
authorAlex Zolotarev <deathbaba@gmail.com>2011-02-16 13:52:07 +0300
committerAlex Zolotarev <alex@maps.me>2015-09-23 01:12:38 +0300
commitd87fba4671b9b696c9700f32f70b5da09539940a (patch)
tree74990f19b34b6c473c25b1c9c0f7bea71a25f8dd /platform/platform.hpp
parent08a1d43923c01025826904439cf68917afba24e7 (diff)
Removed boost:: prefix for bind calls (sometimes bind from tr2 can be used)
Diffstat (limited to 'platform/platform.hpp')
-rw-r--r--platform/platform.hpp4
1 files changed, 2 insertions, 2 deletions
diff --git a/platform/platform.hpp b/platform/platform.hpp
index ef753bb1d5..d98d7ead9a 100644
--- a/platform/platform.hpp
+++ b/platform/platform.hpp
@@ -28,10 +28,10 @@ public:
/// Throws FileAbsentException
/// @param[in] file just file name which we want to read
- /// @param[out] fullPath fully resolved path including file name
- /// @return false if file is absent
+ /// @return fullPath fully resolved path including file name
virtual string ReadPathForFile(char const * file) const = 0;
/// Throws FileAbsentException
+ /// @return fullPath fully resolved path including file name
string ReadPathForFile(string const & file) const
{
return ReadPathForFile(file.c_str());