473,789 Members | 2,746 Online
Bytes | Software Development & Data Engineering Community
+ Post

Home Posts Topics Members FAQ

weird compiler error---HELP!

I keep getting the following error:
g++ SortedList.cpp
SortedList.cpp: 260: error: expected constructor, destructor, or type
conversion before '*' token
SortedList.cpp: 260: error: expected `,' or `;' before '*' token
Line # 260 is ListNode *SortedList::co pyList( ListNode *L ) {
towards the end of the .cpp file.

I have just put stubs in fr the code that I know works for readability
purposes. here is my code:
#ifndef SORTEDLIST_H
#define SORTEDLIST_H

#include "Student.h"
class SortedList {

public:

SortedList();
// Constructs an empty list.

SortedList(cons t SortedList &SL);
//Copy Constructor

~SortedList();
//Destructor

SortedList & operator=(const SortedList &SL);
//operator equals

bool insert(Student *s);
Student *find(int studentID);
Student *remove(int studentID);
void print() const;

private:

struct ListNode {
Student *student;
ListNode *next;
};

ListNode *head; // pointer to first node in the list

static void freeList(ListNo de *L);
static ListNode *copyList(ListN ode *L);
};

#endif

----------------------------------------------------------

SortedList.cpp
----------------------------------------------------

#include <iostream>
#include "Student.h"
#include "SortedList .h"

using namespace std;

/* Constructs an empty list
*/
SortedList::Sor tedList() {
head = NULL;
}

SortedList::Sor tedList(const SortedList &SL) {
}

SortedList::~So rtedList() {
}

SortedList & SortedList::ope rator=(const SortedList &SL) {
}
bool SortedList::ins ert(Student *s) {
}
Student *SortedList::fi nd(int studentID) {
}
Student *SortedList::re move(int studentID) {
}
void SortedList::pri nt() const {
}
void SortedList::fre eList(ListNode *L) {
}
ListNode *SortedList::co pyList( ListNode *L ) {
//create the node that is being copied to
ListNode *toReturn = new ListNode();

//if this is the last node in list, copy and return
if( L->next == NULL ) {
toReturn->student = new Student( L->next );

//else call the copy on the child of this node and
//copy the student to the linked list
} else {
toReturn->next = copyList( L->next );
toReturn->student = new Student( L->student );
}

return toReturn;
}

Nov 3 '05 #1
2 1838
sarah wrote:
I keep getting the following error:
g++ SortedList.cpp
SortedList.cpp: 260: error: expected constructor, destructor, or type
conversion before '*' token
SortedList.cpp: 260: error: expected `,' or `;' before '*' token
Line # 260 is ListNode *SortedList::co pyList( ListNode *L ) {
towards the end of the .cpp file.

I have just put stubs in fr the code that I know works for readability
purposes. here is my code:
[...]
ListNode *SortedList::co pyList( ListNode *L ) {
You need to qualify the 'ListNode' at the beginning:

SortedList::Lis tNode *SortedList ...
[...]


V
Nov 3 '05 #2
many thanks!!

Nov 3 '05 #3

This thread has been closed and replies have been disabled. Please start a new discussion.

Similar topics

0
302
by: codymanix | last post by:
Hi, I had an error in my application and after lots of investigation it boiled down to this: public class C : System.Windows.Forms.Control { public int i; } C c = new C(); c.i.GetType(); // this line works fine
21
1958
by: JKop | last post by:
Today I wrote a function that returned an "std::ostringstream" by value. I compiled it with G++. It was throwing exceptions at run-time and closing. So I look through the code, and I look and I look... I forgot to put in the return statement in the aforementioned funtion, ie. it had no return statement.
2
1546
by: Todd A. Anderson | last post by:
Hi...any help would be appreciated. Kind of a weird scenario but I have foo's that point to bars and whenever anybody tries to use a foo as a pointer I want it typed as a baz * and likewise if they do foo-> then also typed as a baz *. So I overload some operators as shown below. In Visual Studio 6, I tried simply to printf a foo and instead of the getting the value of the baz I got the value of bar *. Moreover, I tried to pass that foo...
10
3076
by: chris | last post by:
I'm not sure if this is a bug being caused by visual studio, or by the vb compiler itself. I have good size solution (33 projects) and am consistently having a problem with one project.. Basically everytime I build, I get the compiler error bc30456...which is basically that some local variable is not declared. However, the variable is declared...and basically if I change its declaration from private to protected the project will...
18
1385
by: John Rusk | last post by:
Hi, I have some weird compiler behaviour, so I'm hoping that one of the gurus here will be able to tell me whether or not it really is a compiler bug. In short, the compiler is saying that it cannot choose between two overloaded versions of a method when, IMHO, one overload is clearly a "better" choice than the other. I've looked through all the rules for overload resolution, and I can't see any justification for the compiler's error...
6
1235
by: jytylr | last post by:
I'm getting a compiler error that says "Cannot convert from int to int?". I have no idea what this means. Here's a screenshot: http://www.sendspace.com/file/6o20pn Any ideas?
3
1919
by: Joe Van Dyk | last post by:
I'm compiling some code on a IRIX compiler (MIPSpro Compilers: Version 7.4.2m) with all warnings turned on, and I'm getting some of these warnings: cc-3649 CC: ERROR at end of source all virtual functions for class "std::__Named_exception" inline: static virtual table generated cc-3649 CC: ERROR at end of source
9
2056
by: fabio.bizzetti | last post by:
Hello all, I went across what seems possibly a bug of the compiler (VisualC 2005, just for the record) or a very strange and non-expected (by me at least) behaviour of the C++ ISO standard. Thus I'm posting on both newsgroups. Here we go: I noticed that if I nest a structure inside another one, the wrong constructor will be called.. the one from a different class!! Here is some test code:
41
18227
by: Miroslaw Makowiecki | last post by:
Where can I download Comeau compiler as a trial version? Thanks in advice.
0
9666
marktang
by: marktang | last post by:
ONU (Optical Network Unit) is one of the key components for providing high-speed Internet services. Its primary function is to act as an endpoint device located at the user's premises. However, people are often confused as to whether an ONU can Work As a Router. In this blog post, we’ll explore What is ONU, What Is Router, ONU & Router’s main usage, and What is the difference between ONU and Router. Let’s take a closer look ! Part I. Meaning of...
0
10408
Oralloy
by: Oralloy | last post by:
Hello folks, I am unable to find appropriate documentation on the type promotion of bit-fields when using the generalised comparison operator "<=>". The problem is that using the GNU compilers, it seems that the internal comparison operator "<=>" tries to promote arguments from unsigned to signed. This is as boiled down as I can make it. Here is my compilation command: g++-12 -std=c++20 -Wnarrowing bit_field.cpp Here is the code in...
1
10139
by: Hystou | last post by:
Overview: Windows 11 and 10 have less user interface control over operating system update behaviour than previous versions of Windows. In Windows 11 and 10, there is no way to turn off the Windows Update option using the Control Panel or Settings app; it automatically checks for updates and installs any it finds, whether you like it or not. For most users, this new feature is actually very convenient. If you want to control the update process,...
0
9020
agi2029
by: agi2029 | last post by:
Let's talk about the concept of autonomous AI software engineers and no-code agents. These AIs are designed to manage the entire lifecycle of a software development project—planning, coding, testing, and deployment—without human intervention. Imagine an AI that can take a project description, break it down, write the code, debug it, and then launch it, all on its own.... Now, this would greatly impact the work of software developers. The idea...
1
7529
isladogs
by: isladogs | last post by:
The next Access Europe User Group meeting will be on Wednesday 1 May 2024 starting at 18:00 UK time (6PM UTC+1) and finishing by 19:30 (7.30PM). In this session, we are pleased to welcome a new presenter, Adolph Dupré who will be discussing some powerful techniques for using class modules. He will explain when you may want to use classes instead of User Defined Types (UDT). For example, to manage the data in unbound forms. Adolph will...
0
5417
by: TSSRALBI | last post by:
Hello I'm a network technician in training and I need your help. I am currently learning how to create and manage the different types of VPNs and I have a question about LAN-to-LAN VPNs. The last exercise I practiced was to create a LAN-to-LAN VPN between two Pfsense firewalls, by using IPSEC protocols. I succeeded, with both firewalls in the same network. But I'm wondering if it's possible to do the same thing, with 2 Pfsense firewalls...
1
4092
by: 6302768590 | last post by:
Hai team i want code for transfer the data from one system to another through IP address by using C# our system has to for every 5mins then we have to update the data what the data is updated we have to send another system
2
3700
muto222
by: muto222 | last post by:
How can i add a mobile payment intergratation into php mysql website.
3
2909
bsmnconsultancy
by: bsmnconsultancy | last post by:
In today's digital era, a well-designed website is crucial for businesses looking to succeed. Whether you're a small business owner or a large corporation in Toronto, having a strong online presence can significantly impact your brand's success. BSMN Consultancy, a leader in Website Development in Toronto offers valuable insights into creating effective websites that not only look great but also perform exceptionally well. In this comprehensive...

By using Bytes.com and it's services, you agree to our Privacy Policy and Terms of Use.

To disable or enable advertisements and analytics tracking please visit the manage ads & tracking page.