diff options
author | Martin Wilke <miwi@FreeBSD.org> | 2006-12-21 19:33:08 +0000 |
---|---|---|
committer | Martin Wilke <miwi@FreeBSD.org> | 2006-12-21 19:33:08 +0000 |
commit | 9f56acee99307898d179b4d726a47528e8f78cad (patch) | |
tree | dbb583569bc0f879b6df93000903c1362d7e5e21 /graphics/libx3dtk/files/patch-Signal.h | |
parent | Update to 1.0.16 (diff) |
- Fix build with gcc 4.1
PR: ports/106834
Submitted by: German Tischler <tanis@gaspode.franken.de> (maintainer)
Notes
Notes:
svn path=/head/; revision=180363
Diffstat (limited to '')
-rw-r--r-- | graphics/libx3dtk/files/patch-Signal.h | 12 |
1 files changed, 12 insertions, 0 deletions
diff --git a/graphics/libx3dtk/files/patch-Signal.h b/graphics/libx3dtk/files/patch-Signal.h new file mode 100644 index 000000000000..612a46f0a3e9 --- /dev/null +++ b/graphics/libx3dtk/files/patch-Signal.h @@ -0,0 +1,12 @@ +*** include/X3DTK/private/Signal.h.orig Sat Dec 16 16:51:16 2006 +--- include/X3DTK/private/Signal.h Sat Dec 16 16:51:52 2006 +*************** +*** 44,49 **** +--- 44,50 ---- + class Signal + { + public: ++ virtual ~Signal() {} + virtual void transmit() = 0; + + #ifdef TEMPLATE_SPECIALIZATION_SUPPORTED |