ccdoc - Submit a Bug
Joe Linoff
$Revision: 1.7 $
$Date: 2001/09/24 20:23:00 $
To submit a bug or enhancement request, click here
to send me e-mail. Please try to include the following information:
- The keyword ccdoc somewhere in the header line.
- The version/revision of the program from the -version switch. If the version
of the program that you have does not have the -version switch, try downloading
the latest version to see whether that fixes the problem before submitting
the bug.
- The shell and platform, please be as specific as you can.
- A complete description of the problem.
- The smallest code sample possible to produce the problem.
- Information that will allow me to contact you if I need more information.
Please do not send me e-mail with no subject. My browsers automatically discard
such e-mails to reduce spam.
Here is an example:
Version: ccdoc v0.8 r9 2001/08/29 bin_opt_msvc_MSWin32-4.0
Contact Info:
foo@bar.spam.com
Shell: cmd.exe, bash
Platform: Windows 98 SE
Description:
Ccdoc thinks that A<T>::A() is a standalone
function in the following code sample.
Code Sample:
template <class T>
class A {
public:
A();
};
template <class T> A<T>::A() {}