Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/mpc-hc/mpc-hc.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorUnderground78 <underground78@users.sourceforge.net>2011-08-07 23:52:16 +0400
committerUnderground78 <underground78@users.sourceforge.net>2011-08-07 23:52:16 +0400
commit5471777a7952b806434e0c9a959cc08ee648dcaa (patch)
tree7d0d1885e905d3ae65550309d916b25c408fb8ae /src/filters/parser/SSFSplitter
parent6da02ad7b229b91ded4bc62446552e4a1e24c3e8 (diff)
- Rename "hash" so that there is no ambiguity with std::hash.
- Avoid a macro redefinition. - Make some signed/unsigned conversions explicit. - Fix a few unused variables. - Reduce the scope of a few variables. - Don't use extra class name qualificater in header files. - Initilialize a few variables. - Fix the case for some file names. - Remove some useless casts. - Cosmetics (remove empty lines at the end of some files, ...) Patch by XhmikosR. git-svn-id: https://mpc-hc.svn.sourceforge.net/svnroot/mpc-hc/trunk@3605 10f7b99b-c216-0410-bff0-8a66a9350fd8
Diffstat (limited to 'src/filters/parser/SSFSplitter')
-rw-r--r--src/filters/parser/SSFSplitter/SSFSplitter.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/filters/parser/SSFSplitter/SSFSplitter.cpp b/src/filters/parser/SSFSplitter/SSFSplitter.cpp
index 9ba812991..6c8532e57 100644
--- a/src/filters/parser/SSFSplitter/SSFSplitter.cpp
+++ b/src/filters/parser/SSFSplitter/SSFSplitter.cpp
@@ -80,7 +80,7 @@ namespace ssf
ASSERT(m_pFile);
}
- int InputStreamBSF::NextByte() {
+ int NextByte() {
if(!m_pFile) {
ThrowError(_T("m_pFile is NULL"));
}