aboutsummaryrefslogtreecommitdiffstats
path: root/src/base/song.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'src/base/song.cpp')
-rw-r--r--src/base/song.cpp4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/base/song.cpp b/src/base/song.cpp
index af7e90a5..51798115 100644
--- a/src/base/song.cpp
+++ b/src/base/song.cpp
@@ -39,7 +39,7 @@ namespace usdx
}
Song::Song(const boost::filesystem::wpath& filename,
- const std::map<std::string, std::string>& header) :
+ const std::map<std::string, std::string>& header) :
filename(filename), custom_header_tags(header)
{
std::map<std::string, std::string>::iterator it;
@@ -100,7 +100,7 @@ namespace usdx
std::string Song::get_header_tag(const std::string& tag, const bool required)
{
- std::map<std::string, std::string>::iterator it;
+ std::map<std::string, std::string>::iterator it;
std::string result = "";
if ((it = custom_header_tags.find(tag)) != custom_header_tags.end()) {