diff --git a/src/lib/meta/function-closure.hpp b/src/lib/meta/function-closure.hpp index b810bd83b..3c25f8042 100644 --- a/src/lib/meta/function-closure.hpp +++ b/src/lib/meta/function-closure.hpp @@ -804,8 +804,6 @@ namespace func{ typename _Clo::Type closure (SIG& f, Tuple& args) { - typedef typename _Fun::Ret Ret; - typedef typename _Sig::Type Signature; typedef typename _Clo::Type Closure; return Closure (f,args); } diff --git a/src/proc/mobject/session/scope-path.cpp b/src/proc/mobject/session/scope-path.cpp index f48054802..4ebc6bd28 100644 --- a/src/proc/mobject/session/scope-path.cpp +++ b/src/proc/mobject/session/scope-path.cpp @@ -248,7 +248,6 @@ namespace session { ScopePath commonPrefix (ScopePath const& path1, ScopePath const& path2) { - typedef std::vector::iterator VIter; ScopePath prefix (ScopePath::INVALID); uint len = std::min (path1.length(), path2.length()); for (uint pos = 0; posattach( - asset::Struct::retrieve (Query ("id(fork31)"))); ////TODO broken: we don't use a dedicated Fork asset anymore. It's just an EntryID + asset::Struct::retrieve (Query ("id(fork31)"))); ////TODO broken: we don't use a dedicated Fork asset anymore. It's just an EntryID CHECK (fork31 == focus.getObject()); diff --git a/tests/core/proc/mobject/session/test-scopes.cpp b/tests/core/proc/mobject/session/test-scopes.cpp index 4145f3762..4b08e1339 100644 --- a/tests/core/proc/mobject/session/test-scopes.cpp +++ b/tests/core/proc/mobject/session/test-scopes.cpp @@ -60,11 +60,11 @@ namespace test { ID i2 = index->insert (p2, i1 ); ID i3 = index->insert (p3, i2 ); ID i4 = index->insert (p4, i3 ); - ID i5 = index->insert (p5, i4 ); + index->insert (p5, i4 ); - ID is1 = index->insert (ps1,root); - ID is2 = index->insert (ps2,root); - ID is3 = index->insert (ps3, is2); + index->insert (ps1,root); + ID is2 =index->insert (ps2,root); + index->insert (ps3, is2); return index; } diff --git a/tests/library/meta/access-casted-test.cpp b/tests/library/meta/access-casted-test.cpp index 7bfaa255a..a725343d1 100644 --- a/tests/library/meta/access-casted-test.cpp +++ b/tests/library/meta/access-casted-test.cpp @@ -75,7 +75,6 @@ namespace test { ostream& operator<< (ostream& s, const B& b) { return s << "B{} adr="<<&b<<" type: "< sing; diff --git a/tests/library/sub-id-test.cpp b/tests/library/sub-id-test.cpp index 1d32df42c..0c9e17534 100644 --- a/tests/library/sub-id-test.cpp +++ b/tests/library/sub-id-test.cpp @@ -102,7 +102,6 @@ namespace test{ void checkExtension () { - typedef SubId CID; typedef SubId UID; typedef ExtendedSubId CUID;