473,796 Members | 2,916 Online
Bytes | Software Development & Data Engineering Community
+ Post

Home Posts Topics Members FAQ

C++ Union compilation errors

In below program, I'm getting below compilation errors

error C2621: member '_tag_nodes_::n ode_' of union '_tag_nodes_' has
copy constructor
error C2621: member '_tag_nodes_::l inkednode_' of union '_tag_nodes_'
has copy constructor

Can anybody help me resolve this or any workaround for this?
I must need union because in my data structure only one type of node
is possible at time. So I have taken union. And ya my data structure
is still very big but i posted a fraction part here to simplify the
problem.

#include "stdafx.h"
#include <stdio.h>
#include<iostre am>
#include<conio. h>
#include <list>
using namespace std;

typedef struct _tag_nodedata
{
std::string name;
std::string type;

}NODEDATAINFO;
typedef list<NODEDATAIN FONODEDATA;
typedef struct _tag_nodeinfo
{
void *_nodeptr;
string path_;
NODEDATA data_;

}NODEINFO;
typedef struct _tag_linkednode info
{
void *_nodeptr;
string linkpath_;
int queued;
int hidden;

}LINKEDNODEINFO ;

typedef union _tag_nodes_
{
NODEINFO nodeinfo_;
LINKEDNODEINFO linkednode_;

}NODES;
typedef struct _unrsolvednode_
{
NODES node;
int type;
}UNRESOLVED;

int _tmain(int argc, _TCHAR* argv[])
{
getch();
}
Aug 14 '08 #1
5 3868
Sujal wrote:
In below program, I'm getting below compilation errors

error C2621: member '_tag_nodes_::n ode_' of union '_tag_nodes_' has
copy constructor
error C2621: member '_tag_nodes_::l inkednode_' of union '_tag_nodes_'
has copy constructor
It's telling you can can't put something with a constructor or
destructor in a union.
>
typedef struct _tag_nodedata
You don't need the typedef in C++.
{
std::string name;
std::string type;

}NODEDATAINFO;
All caps for a class name is hideous!
>
int _tmain(int argc, _TCHAR* argv[])
Why not write

int main(int argc, char* argv[])

--
Ian Collins.
Aug 14 '08 #2
On Aug 14, 1:51*pm, Ian Collins <ian-n...@hotmail.co mwrote:
Sujal wrote:
In below program, I'm getting below compilation errors
error C2621: member '_tag_nodes_::n ode_' of union '_tag_nodes_' has
copy constructor
error C2621: member '_tag_nodes_::l inkednode_' of union '_tag_nodes_'
has copy constructor

It's telling you can can't put something with a constructor or
destructor in a union.
typedef struct _tag_nodedata

You don't need the typedef in C++.
{
std::string name;
std::string type;
}NODEDATAINFO;

All caps for a class name is hideous!
int _tmain(int argc, _TCHAR* argv[])

Why not write

int main(int argc, char* argv[])

--
Ian Collins.
Hi Ian,
Thanks for even replying..
I have read on internet on Microsoft site that we can put structure in
Union.
Please refer below link....for more information.
http://msdn.microsoft.com/en-us/library/47azs69s.aspx

If I can't put structure type in union then i need to change my entire
data structure...
BTW, I have created temporary project so I haven't changed following
lines " int _tmain(int argc, _TCHAR* argv[])" while posting the
message.

thanks.

Aug 14 '08 #3
Sujal wrote:

[please don't quote signatures]
>
Hi Ian,
Thanks for even replying..
I have read on internet on Microsoft site that we can put structure in
Union.
You can, but the structure may not have a non-trivial constructor, copy
constructor or destructor. See 9.5.1 in the standard.

One of your structures contained std::strings, so they can't be a member
of a union.

--
Ian Collins.
Aug 14 '08 #4
On Aug 14, 2:33*pm, Ian Collins <ian-n...@hotmail.co mwrote:
Sujal wrote:

[please don't quote signatures]
Hi Ian,
Thanks for even replying..
I have read on internet on Microsoft site that we can put structure in
Union.

You can, but the structure may not have a non-trivial constructor, copy
constructor or destructor. *See 9.5.1 in the standard.

One of your structures contained std::strings, so they can't be a member
of a union.

--
Ian Collins.
Hi Ian,
Oh now I got your point. std::strings... . Thanks for that.
Can you please tell me where can I find 9.5.1 Standard. Can you please
share link for that?
Thanks in advance.
Aug 14 '08 #5
Sujal wrote:
Can you please tell me where can I find 9.5.1 Standard. Can you please
share link for that?
http://www.parashift.com/c++-faq-lit....html#faq-6.13
Aug 14 '08 #6

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

Similar topics

2
2587
by: FireStarter | last post by:
Guys, in the code that follows, why does the method F() still compile, even if DBG is undefined? Inside method G(), the code inside <#if DBG> does not compile (notice that I can write whatever I want in there, I will not receive a compilation error). I do get such an error in F() - because of the garbage I intentionally put there - but F() should not compile in the first place. Am I misusing this attribute?! #undef DBG
4
1992
by: sebastien NO Maraux SPAM | last post by:
I am using Ghost Lib 4.0, which is SDK for Phantom haptic device. this lib does not compile under .net, seemingly because of a union of this type : union A { union A* aList; char b; };
7
3318
by: KoliPoki | last post by:
Hello every body. I have a small issue. Problem: I have a table with 4 descriptor columns (type). I need to formulate a query to retrieve a count for each type so I can group by...etc. The view I have works, but doesn't work when I supplement the query with some functions... they just don't like the UNION. The real problem is I can't change any of the udf's or queries, just the view. The view is inner joined back on to the primary...
35
3057
by: mwelsh1118 | last post by:
Why doesn't C# allow incremental compilation like Java? Specifically, in Java I can compile single .java files in isolation. The resulting individual .class files can be grouped into .jar files. In C#, there appears to be no analog. I have to compile all my .cs files into a single .dll. This has serious drawbacks in terms of compilation. With Eclipse, I change a file and only that file is re-compiled. With Visual Studio, I
29
2202
by: Richard Harter | last post by:
There is probably a simple way to do what I want but I don't see it. Any suggestions are welcome. Suppose I have a function foo with an argument that can be any of several types and that I want to use a union for that argument. In a header file there is the following: #define VAL_ALT union urt_value_alt .....
1
3185
by: cwhite | last post by:
Hi! I've included some of my classes in the union in my grammar file: %union { int int_type; char* string_type; PNode* pNode; } %type <int_type> programs %type <pNode> program
1
2812
by: BSand0764 | last post by:
I'm getting an error that I can't seem to resolve. When I compile the Functor related logic in a test program, the files compile and execute properly (see Listing #1). However, when I incorporate the same logic within my simulation, the class that implements the functor logic has problems compiling. I get the following errors: -- Building myTest.cpp --
14
28169
by: deepak | last post by:
Hi Experts, I'm getting this compilation error while trying to access a member in structure. at what time we will get this error message? Thanks, Deepak
5
6390
by: hnshashi | last post by:
I have writtem kernel(2.4) module to commu. with user space appl. using netlink socket. I am getting compilation error. kernel module:-> #include <linux/skbuff.h> #include<linux/module.h> #include <linux/socket.h> #include <linux/config.h> #include <linux/module.h> #include <linux/kernel.h>
0
9685
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
10468
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...
0
10245
jinu1996
by: jinu1996 | last post by:
In today's digital age, having a compelling online presence is paramount for businesses aiming to thrive in a competitive landscape. At the heart of this digital strategy lies an intricately woven tapestry of website design and digital marketing. It's not merely about having a website; it's about crafting an immersive digital experience that captivates audiences and drives business growth. The Art of Business Website Design Your website is...
1
10205
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
10021
tracyyun
by: tracyyun | last post by:
Dear forum friends, With the development of smart home technology, a variety of wireless communication protocols have appeared on the market, such as Zigbee, Z-Wave, Wi-Fi, Bluetooth, etc. Each protocol has its own unique characteristics and advantages, but as a user who is planning to build a smart home system, I am a bit confused by the choice of these technologies. I'm particularly interested in Zigbee because I've heard it does some...
0
9063
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
7559
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
5458
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...
3
2933
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.