summaryrefslogtreecommitdiff
path: root/ham
diff options
context:
space:
mode:
authorrillig <rillig@pkgsrc.org>2005-03-16 20:00:32 +0000
committerrillig <rillig@pkgsrc.org>2005-03-16 20:00:32 +0000
commit01e183fe1e7824b6bc3343a90f7fabba2e43b525 (patch)
tree1566480115ff38abdc030d7486195bab0464efa0 /ham
parent497511111f739c954629138ad423a8f45268e7a2 (diff)
downloadpkgsrc-01e183fe1e7824b6bc3343a90f7fabba2e43b525.tar.gz
Bugfix for the <pkgsrc_fixes.h> header. Use c.at() instead of c::at().
Approved by wiz.
Diffstat (limited to 'ham')
-rw-r--r--ham/linpsk/files/pkgsrc_fixes.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/ham/linpsk/files/pkgsrc_fixes.h b/ham/linpsk/files/pkgsrc_fixes.h
index d587ec35c52..3901ccc2da3 100644
--- a/ham/linpsk/files/pkgsrc_fixes.h
+++ b/ham/linpsk/files/pkgsrc_fixes.h
@@ -15,7 +15,7 @@
#ifdef __cplusplus
template <class T> typename T::reference at_replacement(T &c, const typename T::size_type &i) {
# ifdef HAVE_STD_VECTOR_AT
- return c::at(i);
+ return c.at(i);
# else
return c[i];
# endif