diff options
author | 2008-04-26 13:59:04 +0000 | |
---|---|---|
committer | 2008-04-26 13:59:04 +0000 | |
commit | 118de550d2dc5508ff4446bdf7f2ddf7b497b9ba (patch) | |
tree | 5ced2de062474cb8e6537e68d71cbc7c5a80e802 /misc | |
parent | f76a3a0a7b38b5a3652a9e9bcb13942483f7c53a (diff) | |
download | paludis-118de550d2dc5508ff4446bdf7f2ddf7b497b9ba.tar.gz paludis-118de550d2dc5508ff4446bdf7f2ddf7b497b9ba.tar.xz |
paludis::tr1:: is dead. We no longer support compilers that don't do tr1 (that means you, gcc-3).
Diffstat (limited to 'misc')
-rwxr-xr-x | misc/make_sr.bash | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/misc/make_sr.bash b/misc/make_sr.bash index 238f11f4b..f0deb43b2 100755 --- a/misc/make_sr.bash +++ b/misc/make_sr.bash @@ -232,7 +232,7 @@ while read a ; do else echo " protected:" echo " ${want_key_types[${k}]% ->*} raw_${want_keys[${k}]};" - echo " mutable paludis::tr1::shared_ptr<const ${want_key_types[${k}]#*-> }> cached_${want_keys[${k}]};" + echo " mutable paludis::std::tr1::shared_ptr<const ${want_key_types[${k}]#*-> }> cached_${want_keys[${k}]};" echo fi done @@ -254,7 +254,7 @@ while read a ; do echo " const ${want_key_types[${k}]%-> *} get_raw_${want_keys[${k}]}() const" echo " PALUDIS_ATTRIBUTE((warn_unused_result));" echo - echo " paludis::tr1::shared_ptr<const ${want_key_types[${k}]#*-> }> ${want_keys[${k}]}() const" + echo " paludis::std::tr1::shared_ptr<const ${want_key_types[${k}]#*-> }> ${want_keys[${k}]}() const" echo " PALUDIS_ATTRIBUTE((warn_unused_result));" echo fi @@ -642,7 +642,7 @@ while read a ; do echo " return raw_${want_keys[${k}]};" echo "}" echo - echo "paludis::tr1::shared_ptr<const ${want_key_types[${k}]#*-> }>" + echo "paludis::std::tr1::shared_ptr<const ${want_key_types[${k}]#*-> }>" echo "${a}::${want_keys[${k}]}() const" echo "{" echo " if (! cached_${want_keys[${k}]})" |