summaryrefslogtreecommitdiff
path: root/emulators/vx68k/files/patch-libvx68k::sram.cc
diff options
context:
space:
mode:
authorAlexey Dokuchaev <danfe@FreeBSD.org>2004-12-23 04:30:47 +0000
committerAlexey Dokuchaev <danfe@FreeBSD.org>2004-12-23 04:30:47 +0000
commita9b0fa5bf5dba3c284f27435c955fe4ffe3ee361 (patch)
tree4116387668f99739e30b97a04f732f2249e12e39 /emulators/vx68k/files/patch-libvx68k::sram.cc
parentUpdate databases/sqlite3 to 3.0.8 (diff)
Should now build with both older and recent GCCs.
Notes
Notes: svn path=/head/; revision=124884
Diffstat (limited to 'emulators/vx68k/files/patch-libvx68k::sram.cc')
-rw-r--r--emulators/vx68k/files/patch-libvx68k::sram.cc38
1 files changed, 38 insertions, 0 deletions
diff --git a/emulators/vx68k/files/patch-libvx68k::sram.cc b/emulators/vx68k/files/patch-libvx68k::sram.cc
new file mode 100644
index 000000000000..6a049c2a2b84
--- /dev/null
+++ b/emulators/vx68k/files/patch-libvx68k::sram.cc
@@ -0,0 +1,38 @@
+--- libvx68k/sram.cc.orig Sat Jun 30 20:54:57 2001
++++ libvx68k/sram.cc Wed Dec 1 18:24:18 2004
+@@ -48,7 +48,7 @@
+ using namespace std;
+
+ uint16_type
+-sram::get_16(uint32_type address, function_code fc) const
++sram::get_16(uint32_type address, function_code fc) const throw()
+ {
+ #ifdef L
+ L("class sram: get_16 fc=%d address=%#010x\n", fc, address);
+@@ -60,7 +60,7 @@
+ }
+
+ int
+-sram::get_8(uint32_type address, function_code fc) const
++sram::get_8(uint32_type address, function_code fc) const throw()
+ {
+ #ifdef L
+ L("class sram: get_8 fc=%d address=%#010x\n", fc, address);
+@@ -71,7 +71,7 @@
+ }
+
+ void
+-sram::put_16(uint32_type, uint16_type, function_code)
++sram::put_16(uint32_type, uint16_type, function_code) throw()
+ {
+ #ifdef L
+ L("class sram: FIXME: `put_16' not implemented\n");
+@@ -79,7 +79,7 @@
+ }
+
+ void
+-sram::put_8(uint32_type, int, function_code)
++sram::put_8(uint32_type, int, function_code) throw()
+ {
+ #ifdef L
+ L("class sram: FIXME: `put_8' not implemented\n");