diff options
author | Pierre Ossman <ossman@cendio.se> | 2024-09-03 08:02:30 +0200 |
---|---|---|
committer | Pierre Ossman <ossman@cendio.se> | 2024-11-06 21:18:52 +0100 |
commit | 1093b1eb6f3e561fb80aafba65e3f1505ae80350 (patch) | |
tree | fa1e47598653cefc6ba8eb2794065383b92c8cdd /win/rfb_win32/DIBSectionBuffer.cxx | |
parent | e4c60ef1985164d1207352bbfdf57ae1d7838404 (diff) | |
download | tigervnc-1093b1eb6f3e561fb80aafba65e3f1505ae80350.tar.gz tigervnc-1093b1eb6f3e561fb80aafba65e3f1505ae80350.zip |
Replace base exception class with standard library
There is no point to having our own generic exception class. Let's use
the one provided by the standard C++ library.
Diffstat (limited to 'win/rfb_win32/DIBSectionBuffer.cxx')
-rw-r--r-- | win/rfb_win32/DIBSectionBuffer.cxx | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/win/rfb_win32/DIBSectionBuffer.cxx b/win/rfb_win32/DIBSectionBuffer.cxx index 62b917c0..f6447b0d 100644 --- a/win/rfb_win32/DIBSectionBuffer.cxx +++ b/win/rfb_win32/DIBSectionBuffer.cxx @@ -21,6 +21,8 @@ #include <config.h> #endif +#include <rdr/Exception.h> + #include <rfb_win32/DIBSectionBuffer.h> #include <rfb_win32/DeviceContext.h> #include <rfb_win32/BitmapInfo.h> |