diff options
author | Alexey Dokuchaev <danfe@FreeBSD.org> | 2006-02-20 13:18:26 +0000 |
---|---|---|
committer | Alexey Dokuchaev <danfe@FreeBSD.org> | 2006-02-20 13:18:26 +0000 |
commit | f03bedcae2bfbd4ccfccbb7e0106388bb2dbec4b (patch) | |
tree | c5712fcaf302723f2019d0d5df7e9ff55f1b7520 /devel/hp48xgcc/files/patch-class+NibStr.cc | |
parent | - Fix problem with ancient make. (diff) |
Add HP48-xgcc 1.0.2, GNU C cross-compiler for HP48 calculators.
Now one step closer porting BSD on my HP48GX. ;-)
Notes
Notes:
svn path=/head/; revision=156493
Diffstat (limited to 'devel/hp48xgcc/files/patch-class+NibStr.cc')
-rw-r--r-- | devel/hp48xgcc/files/patch-class+NibStr.cc | 13 |
1 files changed, 13 insertions, 0 deletions
diff --git a/devel/hp48xgcc/files/patch-class+NibStr.cc b/devel/hp48xgcc/files/patch-class+NibStr.cc new file mode 100644 index 000000000000..41e73d369e56 --- /dev/null +++ b/devel/hp48xgcc/files/patch-class+NibStr.cc @@ -0,0 +1,13 @@ +--- class/NibStr.cc 3 Nov 2004 06:57:51 -0000 1.1 ++++ class/NibStr.cc 3 Nov 2004 12:49:26 -0000 1.2 +@@ -84,8 +84,8 @@ + } + + +-NibStr NibStr::operator+ (const NibStr & rv) const +- return res(length()+rv.length()) { ++NibStr NibStr::operator+ (const NibStr & rv) const { ++ NibStr res(length()+rv.length()); + + if (!res.fail) { + bcopy ( adr, res.adr, len ); |