|
From: Yoda-JM <yo...@us...> - 2010-04-14 11:46:17
|
Module: performous
Branch: master
Commit: a2c6b1b5a20760ca3d64b1ddb145fd09b2f2ae3e
Author: Vincent Le Ligeour <yo...@us...>
Date: Wed Apr 14 13:45:56 2010 +0200
Fixed compilation error (boost::filesystem::path::clear() has been added in 1.40)
---
tools/ss_extract.cpp | 2 +-
1 files changed, 1 insertions(+), 1 deletions(-)
diff --git a/tools/ss_extract.cpp b/tools/ss_extract.cpp
index 81102d3..eda8362 100644
--- a/tools/ss_extract.cpp
+++ b/tools/ss_extract.cpp
@@ -495,7 +495,7 @@ struct Process {
video_us(song, dataPak[id + "/mus+vid.iav"], dataPak[id + "/mus+vid.ind"], path);
} catch (std::exception& e) {
std::cerr << "!!! Unable to extract video: " << e.what() << std::endl;
- song.video.clear();
+ song.video = "";
}
}
if (mkvcompress) {
|