diff options
author | 2007-05-20 16:44:48 +0000 | |
---|---|---|
committer | 2007-05-20 16:44:48 +0000 | |
commit | 437b443e10d98ae028df11a2ce5a3e52dfac8393 (patch) | |
tree | 7501f04135594cfd8acd6eeed7083e2174941d03 /misc | |
parent | 4762032193e34e16b70ad04a029257ae61faee1f (diff) | |
download | paludis-437b443e10d98ae028df11a2ce5a3e52dfac8393.tar.gz paludis-437b443e10d98ae028df11a2ce5a3e52dfac8393.tar.xz |
tr1 fixes
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 a8853bc18..0d78d87f4 100755 --- a/misc/make_sr.bash +++ b/misc/make_sr.bash @@ -214,7 +214,7 @@ while read a ; do else echo " protected:" echo " ${want_key_types[${k}]% ->*} raw_${want_keys[${k}]};" - echo " mutable std::tr1::shared_ptr<const ${want_key_types[${k}]#*-> }> cached_${want_keys[${k}]};" + echo " mutable paludis::tr1::shared_ptr<const ${want_key_types[${k}]#*-> }> cached_${want_keys[${k}]};" echo fi done @@ -236,7 +236,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 " std::tr1::shared_ptr<const ${want_key_types[${k}]#*-> }> ${want_keys[${k}]}() const" + echo " paludis::tr1::shared_ptr<const ${want_key_types[${k}]#*-> }> ${want_keys[${k}]}() const" echo " PALUDIS_ATTRIBUTE((warn_unused_result));" echo fi @@ -493,7 +493,7 @@ while read a ; do echo " return raw_${want_keys[${k}]};" echo "}" echo - echo "std::tr1::shared_ptr<const ${want_key_types[${k}]#*-> }>" + echo "paludis::tr1::shared_ptr<const ${want_key_types[${k}]#*-> }>" echo "${a}::${want_keys[${k}]}() const" echo "{" echo " if (! cached_${want_keys[${k}]})" |