diff options
author | Pixel <pixel@nobis-crew.org> | 2008-10-16 02:42:04 +0200 |
---|---|---|
committer | Pixel <pixel@nobis-crew.org> | 2008-10-16 02:42:04 +0200 |
commit | 59288143eaf405ea4f855464dea1b1c0eb382ad5 (patch) | |
tree | d989bc0c2c4672bb8933068e6a9f9dcf1b517837 /include | |
parent | 3a4c10272436374bb0992e7a225fb1f4a716cc5d (diff) |
Fixing exception prototype under Linux.
Diffstat (limited to 'include')
-rw-r--r-- | include/Handle.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/include/Handle.h b/include/Handle.h index 16054db..6697fdf 100644 --- a/include/Handle.h +++ b/include/Handle.h @@ -97,7 +97,7 @@ class Handle : public Base { }; Handle & operator<<(Handle &, const String &); -Handle & operator>>(Handle &, String &); +Handle & operator>>(Handle &, String &) throw (GeneralException); void copy(Handle *, Handle *, ssize_t = -1); |