From 01e183fe1e7824b6bc3343a90f7fabba2e43b525 Mon Sep 17 00:00:00 2001 From: rillig Date: Wed, 16 Mar 2005 20:00:32 +0000 Subject: Bugfix for the header. Use c.at() instead of c::at(). Approved by wiz. --- ham/linpsk/files/pkgsrc_fixes.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'ham') 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 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 -- cgit v1.2.3