diff options
Diffstat (limited to 'src/WinClient.cc')
-rw-r--r-- | src/WinClient.cc | 8 |
1 files changed, 6 insertions, 2 deletions
diff --git a/src/WinClient.cc b/src/WinClient.cc index a31094e..fc8a018 100644 --- a/src/WinClient.cc +++ b/src/WinClient.cc | |||
@@ -19,7 +19,7 @@ | |||
19 | // FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER | 19 | // FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER |
20 | // DEALINGS IN THE SOFTWARE. | 20 | // DEALINGS IN THE SOFTWARE. |
21 | 21 | ||
22 | // $Id: WinClient.cc,v 1.41 2004/08/10 13:36:07 fluxgen Exp $ | 22 | // $Id: WinClient.cc,v 1.42 2004/08/31 15:26:38 rathnor Exp $ |
23 | 23 | ||
24 | #include "WinClient.hh" | 24 | #include "WinClient.hh" |
25 | 25 | ||
@@ -35,7 +35,11 @@ | |||
35 | #include <iostream> | 35 | #include <iostream> |
36 | #include <algorithm> | 36 | #include <algorithm> |
37 | #include <iterator> | 37 | #include <iterator> |
38 | #include <cassert> | 38 | #ifdef HAVE_CASSERT |
39 | #include <cassert> | ||
40 | #else | ||
41 | #include <assert.h> | ||
42 | #endif | ||
39 | 43 | ||
40 | using namespace std; | 44 | using namespace std; |
41 | 45 | ||