| delorie.com/archives/browse.cgi | search |
| From: | hirsch AT molinette DOT unito DOT it |
| Subject: | Newbie STL pain |
| 17 Nov 1996 10:44:58 -0800 : | |
| Sender: | daemon AT cygnus DOT com |
| Approved: | cygnus DOT gnu-win32 AT cygnus DOT com |
| Distribution: | cygnus |
| Message-ID: | <199611171744.JAA08308.cygnus.gnu-win32@cygnus.com> |
| Mime-Version: | 1.0 |
| X-Sender: | hirsch AT golgi DOT molinette DOT unito DOT it |
| X-Mailer: | Windows Eudora Light Version 1.5.2 |
| Original-To: | gnu-win32 AT cygnus DOT com |
| Original-Sender: | owner-gnu-win32 AT cygnus DOT com |
I am using b14 to learn a little about the stl and recently I found myself
unable to link even very simple multifile programs such as:
//file 1 "test.h"
#ifndef TEST_H
#define TEST_H
#include <stl.h>
#include <iostream.h>
class test
{
public:
vector <int> v;
push();
};
#endif
//file 2
#include "test.h"
test::push()
{
v.push_back(1);
cout << "push" << endl;
};
//file 3
#include "test.h"
void main()
{
test t;
t.push();
};
The files compile OK but the linker complains about multiple declarations of
static objects (allocators found in vector.h).
Why does it not link?
Anyone has a suggestion?
Thank you very much,
Emilio Hirsch
Hirsch AT golgi DOT molinette DOT unito DOT it
-
For help on using this list, send a message to
"gnu-win32-request AT cygnus DOT com" with one line of text: "help".
| webmaster | delorie software privacy |
| Copyright © 2019 by DJ Delorie | Updated Jul 2019 |