mirror of the now-defunct rocklinux.org
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

26 lines
1.2 KiB

  1. This fixes errors like:
  2. ../gsmlib/gsm_map_key.h:78: error: explicit qualification in declaration of `bool gsmlib::operator<(const gsmlib::MapKey<SortedStore>&, const gsmlib::MapKey<SortedStore>&)'
  3. ../gsmlib/gsm_map_key.h:103: error: explicit qualification in declaration of `bool gsmlib::operator==(const gsmlib::MapKey<SortedStore>&, const gsmlib::MapKey<SortedStore>&)'
  4. diff -dur gsmlib-1.10/gsmlib/gsm_map_key.h src.gsmlib.1134789323.26631.3587511328/gsmlib-1.10/gsmlib/gsm_map_key.h
  5. --- gsmlib-1.10/gsmlib/gsm_map_key.h 2005-12-17 06:07:15.000000000 +0100
  6. +++ src.gsmlib.1134789323.26631.3587511328/gsmlib-1.10/gsmlib/gsm_map_key.h 2005-12-17 06:03:02.000000000 +0100
  7. @@ -74,7 +74,7 @@
  8. // MapKey members
  9. template <class SortedStore>
  10. - bool gsmlib::operator<(const MapKey<SortedStore> &x,
  11. + bool operator<(const MapKey<SortedStore> &x,
  12. const MapKey<SortedStore> &y)
  13. {
  14. assert(&x._myStore == &y._myStore);
  15. @@ -99,7 +99,7 @@
  16. }
  17. template <class SortedStore>
  18. - bool gsmlib::operator==(const MapKey<SortedStore> &x,
  19. + bool operator==(const MapKey<SortedStore> &x,
  20. const MapKey<SortedStore> &y)
  21. {
  22. assert(&x._myStore == &y._myStore);