Skip to content

Commit 91d9ded

Browse files
committed
Fix an error for Centos 5
Unfortunately this doesn't get rust to compile on Centos 5. Centos 5 uses glibc 2.5, but the snapshot-0 needs glibc 2.6+.
1 parent 86dfca2 commit 91d9ded

File tree

1 file changed

+1
-0
lines changed

1 file changed

+1
-0
lines changed

src/rt/rust_signal.h

+1
Original file line numberDiff line numberDiff line change
@@ -5,6 +5,7 @@
55
class rust_signal {
66
public:
77
virtual void signal() = 0;
8+
virtual ~rust_signal() {}
89
};
910

1011
#endif /* RUST_SIGNAL_H */

0 commit comments

Comments
 (0)