diff options
author | Alexey Dokuchaev <danfe@FreeBSD.org> | 2004-12-23 04:30:47 +0000 |
---|---|---|
committer | Alexey Dokuchaev <danfe@FreeBSD.org> | 2004-12-23 04:30:47 +0000 |
commit | a9b0fa5bf5dba3c284f27435c955fe4ffe3ee361 (patch) | |
tree | 4116387668f99739e30b97a04f732f2249e12e39 /emulators/vx68k/files/patch-libvx68k::gvideomem.cc | |
parent | Update 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::gvideomem.cc')
-rw-r--r-- | emulators/vx68k/files/patch-libvx68k::gvideomem.cc | 38 |
1 files changed, 38 insertions, 0 deletions
diff --git a/emulators/vx68k/files/patch-libvx68k::gvideomem.cc b/emulators/vx68k/files/patch-libvx68k::gvideomem.cc new file mode 100644 index 000000000000..ab5cad968a51 --- /dev/null +++ b/emulators/vx68k/files/patch-libvx68k::gvideomem.cc @@ -0,0 +1,38 @@ +--- libvx68k/gvideomem.cc.orig Sat Jun 30 20:52:35 2001 ++++ libvx68k/gvideomem.cc Wed Dec 1 18:24:18 2004 +@@ -37,7 +37,7 @@ + using namespace std; + + uint16_type +-graphics_video_memory::get_16(uint32_type address, function_code fc) const ++graphics_video_memory::get_16(uint32_type address, function_code fc) const throw() + { + #ifdef DL + DL("class graphics_video_memory: get_16: fc=%d address=0x%08lx\n", +@@ -51,7 +51,7 @@ + } + + int +-graphics_video_memory::get_8(uint32_type address, function_code fc) const ++graphics_video_memory::get_8(uint32_type address, function_code fc) const throw() + { + #ifdef DL + DL("class graphics_video_memory: get_8: fc=%d address=0x%08lx\n", +@@ -66,7 +66,7 @@ + + void + graphics_video_memory::put_16(uint32_type address, uint16_type value, +- function_code fc) ++ function_code fc) throw() + { + #ifdef DL + DL("class graphics_video_memory: put_16: fc=%d address=0x%08lx value=0x%04x\n", +@@ -79,7 +79,7 @@ + } + + void +-graphics_video_memory::put_8(uint32_type address, int value, function_code fc) ++graphics_video_memory::put_8(uint32_type address, int value, function_code fc) throw() + { + #ifdef DL + DL("class graphics_video_memory: put_8: fc=%d address=0x%08lx value=0x%02x\n", |