ddd
[Top][All Lists]
Advanced

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

Re: DDD 3.2.95 is available - graphical debugger front-end


From: Arnaud Desitter
Subject: Re: DDD 3.2.95 is available - graphical debugger front-end
Date: Thu, 11 Jan 2001 19:57:05 +0000 ()

> 
> Dear DDD users,
> 
> You can now download DDD 3.2.95 

With the patch below, ddd 3.2.95 builds on:

- AIX / Visual Age xlC 5.0
- HP-UX / aCC 3.13
- OSF / cxx 6.2
- IRIX / CC 7.3
- Solaris / CC 5.1 

Regards,
Arnaud

diff -ru ddd-3.2.95/ddd/SourceView.C ddd-3.2.95.1/ddd/SourceView.C
--- ddd-3.2.95/ddd/SourceView.C Tue Jan  9 18:15:22 2001
+++ ddd-3.2.95.1/ddd/SourceView.C       Wed Jan 10 16:05:15 2001
@@ -2882,7 +2882,7 @@
     }
 }
 
-void SourceView::refresh_code_bp_disp(bool reset = false)
+void SourceView::refresh_code_bp_disp(bool reset)
 {
     if (display_glyphs && !reset)
        return;
diff -ru ddd-3.2.95/ddd/userinfo.C ddd-3.2.95.1/ddd/userinfo.C
--- ddd-3.2.95/ddd/userinfo.C   Mon Dec 11 12:21:48 2000
+++ ddd-3.2.95.1/ddd/userinfo.C Thu Jan 11 18:28:41 2001
@@ -163,11 +163,11 @@
     if (s == 0)
        return false;
 
-    char *at = strchr(s, '@');
+    const char *at = strchr(s, '@');
     if (at == 0 || at == s || at[1] == '\0')
        return false;
 
-    char *dot = strchr(s, '.');
+    const char *dot = strchr(s, '.');
     if (dot == 0 || dot == s || dot[1] == '\0')
        return false;
 
Only in ddd-3.2.95.1/ddd: userinfo.C~



reply via email to

[Prev in Thread] Current Thread [Next in Thread]