Forum: C Aug 16th, 2005 |
| Replies: 1 Views: 1,085 |
Forum: C Aug 16th, 2005 |
| Replies: 1 Views: 1,085 SegFault on class instantiation Hi, I get a segfault when I try to instantiate a class I wrote. I don't know what the problem is here. The constructor is never entered.
Details:
/* Connection.h: */
class Stream
{
private:
... |
Forum: C Aug 16th, 2005 |
| Replies: 7 Views: 1,576 |
Forum: C Aug 16th, 2005 |
| Replies: 7 Views: 1,576 |
Forum: C++ Aug 16th, 2005 |
| Replies: 13 Views: 1,631 Re: Help ME int fact(int n){ return n <= 1 ? 1 : n * fact(n -1); } |
Forum: C Aug 16th, 2005 |
| Replies: 7 Views: 1,576 |
Forum: C Aug 13th, 2005 |
| Replies: 2 Views: 2,326 |
Forum: C Aug 12th, 2005 |
| Replies: 3 Views: 1,121 |
Forum: C Aug 12th, 2005 |
| Replies: 3 Views: 1,121 |
Forum: C Aug 12th, 2005 |
| Replies: 1 Views: 936 Re: Stupid compiler error I figured it out. As predicted, it was unspeakably stupid. I can't call a function register because it's a keyword. |
Forum: C Aug 12th, 2005 |
| Replies: 1 Views: 936 Stupid compiler error this is probably something extremely stupid but I can't fix it no matter what I try :sad:
I have a "Service.h" file that looks like this:
#ifndef _SERVICE_H__
#define _SERVICE_H__
#include... |