slackbuilds_ponce/desktop/searchmonkey/searchmonkey-2.0.0-gcc4.7.patch
David Woodfall ec3e5e52d9 desktop/searchmonkey: Updated for version 2.0.0.
Signed-off-by: David Spencer <idlemoor@slackbuilds.org>
2017-06-15 18:35:57 +07:00

35 lines
1.2 KiB
Diff

diff -Naur a/Utility.h b/Utility.h
--- a/Utility.h 2010-05-16 11:37:32.000000000 +0000
+++ b/Utility.h 2017-06-13 18:55:32.273913477 +0000
@@ -92,16 +92,6 @@
CallEach(observers, searchable, &Subject::Register);
here the Subject is the type of Caller
*/
-template <typename CalleeContainer, typename Caller, typename Op>
-void CallEach(const CalleeContainer& container, Caller& caller, Op op)
-{
- for_each(container.begin(), container.end(), bind1st(mem_fun(op), caller));
-}
-template <typename T>
-bool IsValueInRange(T value, T lowerBound, T upperBound)
-{
- return LowerBoundFit(value, lowerBound) && UpperBoundFit(value, upperBound);
-}
template <typename T>
bool BoundSpecified(T boundValue)
{
@@ -130,4 +120,14 @@
return false;
}
+template <typename CalleeContainer, typename Caller, typename Op>
+void CallEach(const CalleeContainer& container, Caller& caller, Op op)
+{
+ for_each(container.begin(), container.end(), bind1st(mem_fun(op), caller));
+}
+template <typename T>
+bool IsValueInRange(T value, T lowerBound, T upperBound)
+{
+ return LowerBoundFit(value, lowerBound) && UpperBoundFit(value, upperBound);
+}
#endif