473,799 Members | 3,212 Online
Bytes | Software Development & Data Engineering Community
+ Post

Home Posts Topics Members FAQ

expected unqualified-id before ‘:’ token

77 New Member
I have a program which uses boost 1.33.1 and it works fine with gcc 4.1 however now that I want to compile with gcc 4.4 it get many errors. For example somewhere in the boost files, it says:
/opt/boost_1_33_1/boost/mpl/aux_/numeric_op.hpp: 250: error: expected unqualified-id before ‘:’ token

the code at that line is (note the second line):
Expand|Select|Wrap|Line Numbers
  1. #if !defined(BOOST_MPL_CFG_MSVC_ETI_BUG) 
  2.     : AUX778076_OP_IMPL_NAME<    
  3.           typename AUX778076_OP_TAG_NAME<N1>::type
  4.         , typename AUX778076_OP_TAG_NAME<N2>::type
  5.         >::template apply<N1,N2>::type
  6. #else
  7.     : aux::msvc_eti_base< typename apply_wrap2<
  8.           AUX778076_OP_IMPL_NAME<
  9.               typename AUX778076_OP_TAG_NAME<N1>::type
  10.             , typename AUX778076_OP_TAG_NAME<N2>::type
  11.             >
  12.         , N1
  13.         , N2
  14.         >::type >::type
  15. #endif
I know that boost 1.33.1 is old however I checked numeric_op.hpp in the latest boost release at http://svn.boost.org/svn/boost/trunk/boost/mpl/aux_/numeric_op.hpp and it is the same as before.

So any idea to solve that? thanks
Mar 29 '11 #1
5 3716
Banfa
9,065 Recognized Expert Moderator Expert
We don't want an example of the errors, we want the first error or given that this is a template issue the first 5 - 10 errors.

Once you have 1 error anything that follows is suspect because if may be on code that is correct but being interpreted incorrect because of that first error.

Also when you post code post the whole statement, what you have posted looks like it might be the base class clause of a class definition but we can't tell because you've missed out the beginning of the statement.
Mar 29 '11 #2
mahmoodn
77 New Member
This is the full stack
Expand|Select|Wrap|Line Numbers
  1. compiling OneWayMuxImpl.cpp (g++)
  2. In file included from /opt/boost_1_33_1/boost/mpl/aux_/arithmetic_op.hpp:26,
  3.                  from /opt/boost_1_33_1/boost/mpl/plus.hpp:19,
  4.                  from /opt/boost_1_33_1/boost/mpl/vector/aux_/iterator.hpp:19,
  5.                  from /opt/boost_1_33_1/boost/mpl/vector/aux_/vector0.hpp:22,
  6.                  from /opt/boost_1_33_1/boost/mpl/vector/aux_/clear.hpp:18,
  7.                  from /opt/boost_1_33_1/boost/mpl/vector/vector0.hpp:24,
  8.                  from /opt/boost_1_33_1/boost/mpl/vector/vector10.hpp:18,
  9.                  from /opt/boost_1_33_1/boost/mpl/vector/vector20.hpp:18,
  10.                  from /opt/boost_1_33_1/boost/mpl/vector/vector30.hpp:18,
  11.                  from /opt/boost_1_33_1/boost/mpl/vector/vector40.hpp:18,
  12.                  from /opt/boost_1_33_1/boost/mpl/vector/vector50.hpp:18,
  13.                  from /opt/boost_1_33_1/boost/mpl/vector.hpp:36,
  14.                  from /home/mahmood/flexus-4.0/core/metaprogram.hpp:57,
  15.                  from /home/mahmood/flexus-4.0/core/configuration.hpp:50,
  16.                  from /home/mahmood/flexus-4.0/core/simulator_layout.hpp:83,
  17.                  from /home/mahmood/flexus-4.0/components/Common/OneWayMux.hpp:39,
  18.                  from OneWayMuxImpl.cpp:39:
  19. /opt/boost_1_33_1/boost/mpl/aux_/numeric_op.hpp:250: error: expected unqualified-id before ‘:’ token
The detail of each file at the mentioned line is:

OneWayMux.cpp:3 9
Expand|Select|Wrap|Line Numbers
  1. #include <components/Common/OneWayMux.hpp>
OneWayMux.hpp:3 9
Expand|Select|Wrap|Line Numbers
  1. #include <core/simulator_layout.hpp>

simulator_layou t.hpp:83
Expand|Select|Wrap|Line Numbers
  1.   #define FLEXUS_IMPLEMENTATION_FILE
  2.  
  3.   #include <core/types.hpp>
  4.   #include <core/debug/debug.hpp>
  5.   #include <core/component.hpp>
  6.   #include <core/configuration.hpp>

configuration.h pp:50
Expand|Select|Wrap|Line Numbers
  1. #include <core/metaprogram.hpp>
metaprogram.hpp :57
Expand|Select|Wrap|Line Numbers
  1. #define BOOST_MPL_CFG_NO_PREPROCESSED_HEADERS
  2. #include <boost/mpl/vector.hpp>
  3.  
  4. #undef BOOST_MPL_NO_PREPROCESSED_HEADERS
vector.hpp:36
Expand|Select|Wrap|Line Numbers
  1. #   include BOOST_PP_STRINGIZE(boost/mpl/vector/AUX778076_VECTOR_HEADER)
  2. #   undef AUX778076_VECTOR_HEADER
vector50.hpp:18
Expand|Select|Wrap|Line Numbers
  1. #if !defined(BOOST_MPL_PREPROCESSING_MODE)
  2. #   include <boost/mpl/vector/vector40.hpp>
  3. #endif
vector40.hpp:18
Expand|Select|Wrap|Line Numbers
  1. #if !defined(BOOST_MPL_PREPROCESSING_MODE)
  2. #   include <boost/mpl/vector/vector30.hpp>
  3. #endif
vector30.hpp:18
Expand|Select|Wrap|Line Numbers
  1. #if !defined(BOOST_MPL_PREPROCESSING_MODE)
  2. #   include <boost/mpl/vector/vector20.hpp>
  3. #endif
vector20.hpp:18
Expand|Select|Wrap|Line Numbers
  1. #if !defined(BOOST_MPL_PREPROCESSING_MODE)
  2. #   include <boost/mpl/vector/vector10.hpp>
  3. #endif
vector10.hpp:18
Expand|Select|Wrap|Line Numbers
  1. #if !defined(BOOST_MPL_PREPROCESSING_MODE)
  2. #   include <boost/mpl/vector/vector0.hpp>
  3. #endif
vector0.hpp:24
Expand|Select|Wrap|Line Numbers
  1. #include <boost/mpl/vector/aux_/clear.hpp>
clear.hpp:18
Expand|Select|Wrap|Line Numbers
  1. #include <boost/mpl/vector/aux_/vector0.hpp>
vector0.hpp:22
Expand|Select|Wrap|Line Numbers
  1. #include <boost/mpl/vector/aux_/iterator.hpp>
iterator.hpp:19
Expand|Select|Wrap|Line Numbers
  1. #include <boost/mpl/plus.hpp>
plus.hpp:19
Expand|Select|Wrap|Line Numbers
  1. #include <boost/mpl/aux_/arithmetic_op.hpp>
arithmetic_op.h pp:26
Expand|Select|Wrap|Line Numbers
  1. #include <boost/mpl/aux_/numeric_op.hpp>
numeric_op.hpp: 250
Expand|Select|Wrap|Line Numbers
  1. #if !defined(BOOST_MPL_CFG_MSVC_ETI_BUG) 
  2.     : AUX778076_OP_IMPL_NAME<
  3.           typename AUX778076_OP_TAG_NAME<N1>::type
  4.         , typename AUX778076_OP_TAG_NAME<N2>::type
  5.         >::template apply<N1,N2>::type
  6. #else
  7.     : aux::msvc_eti_base< typename apply_wrap2<
  8.           AUX778076_OP_IMPL_NAME<
  9.               typename AUX778076_OP_TAG_NAME<N1>::type
  10.             , typename AUX778076_OP_TAG_NAME<N2>::type
  11.             >
  12.         , N1
  13.         , N2
  14.         >::type >::type
  15. #endif
I hope I provide the right information you wanted
Mar 29 '11 #3
Banfa
9,065 Recognized Expert Moderator Expert
Actually I was hoping for a little more of numeric_op.hpp, the lines before what you have already posted but part from that very impressive detail.
Mar 29 '11 #4
mahmoodn
77 New Member
Sorry for that. You may find this code snippet.
Expand|Select|Wrap|Line Numbers
  1. {
  2.     BOOST_MPL_AUX_LAMBDA_SUPPORT(
  3.           AUX778076_OP_ARITY
  4.         , AUX778076_OP_NAME
  5.         , ( BOOST_MPL_PP_PARAMS(AUX778076_OP_ARITY, N) )
  6.         )
  7. };
  8.  
  9. template< 
  10.       typename N1
  11.     , typename N2
  12.     >
  13. struct BOOST_PP_CAT(AUX778076_OP_NAME,2)
  14.  
  15. #endif
  16.  
  17. #else // AUX778076_OP_ARITY == 2
  18.  
  19. template< 
  20.       typename BOOST_MPL_AUX_NA_PARAM(N1)
  21.     , typename BOOST_MPL_AUX_NA_PARAM(N2)
  22.     >
  23. struct AUX778076_OP_NAME
  24.  
  25. #endif
  26.  
  27. #if !defined(BOOST_MPL_CFG_MSVC_ETI_BUG) 
  28.     : AUX778076_OP_IMPL_NAME<          // EERROORR
  29.           typename AUX778076_OP_TAG_NAME<N1>::type
  30.         , typename AUX778076_OP_TAG_NAME<N2>::type
  31.         >::template apply<N1,N2>::type
  32. #else
  33.     : aux::msvc_eti_base< typename apply_wrap2<
  34.           AUX778076_OP_IMPL_NAME<
  35.               typename AUX778076_OP_TAG_NAME<N1>::type
  36.             , typename AUX778076_OP_TAG_NAME<N2>::type
  37.             >
  38.         , N1
  39.         , N2
  40.         >::type >::type
  41. #endif
  42. {
  43. #if AUX778076_OP_ARITY != 2
  44.  
  45. #   if !defined(BOOST_NO_TEMPLATE_PARTIAL_SPECIALIZATION)
  46.     BOOST_MPL_AUX_LAMBDA_SUPPORT_SPEC(
  47.           AUX778076_OP_ARITY
  48.         , AUX778076_OP_NAME
  49.         , ( BOOST_MPL_PP_PARTIAL_SPEC_PARAMS(2, N, na) )
  50.         )
  51. #   else
  52.     BOOST_MPL_AUX_LAMBDA_SUPPORT(2, BOOST_PP_CAT(AUX778076_OP_NAME,2), (N1, N2))
  53. #   endif
  54.  
  55. #else
  56.     BOOST_MPL_AUX_LAMBDA_SUPPORT(2, AUX778076_OP_NAME, (N1, N2))
  57. #endif
  58. };
  59.  
Mar 30 '11 #5
mahmoodn
77 New Member
I find the solution fairly easy....
I did a diff for numeric_op.hpp between 1.33.1 and current 1.46 (revision 70743) and found little differences in lines between two files. I did replace the old one with new one and the error disappeared.

I want to upload the files but don't see any attachment link. Where can I upload the files?
Mar 30 '11 #6

Sign in to post your reply or Sign up for a free account.

Similar topics

0
4228
by: C. M. Sperberg-McQueen | last post by:
wooks (wookiz@hotmail.com) wrote: > <?xml version='1.0'?> > <userlogin xmlns="urn:faster:userlogin" > xmlns:xsi='http://www.w3.org/2001/XMLSchema-instance'> > <login>mick</login> > <password>brown</password> > </userlogin> > Above is my schema instance.
4
2462
by: Erik Moore | last post by:
I am both producing and parsing an xml document that needs to be validated against a schema. I wanted some consumers of the document to have the option of not performing a validation, so I left the nodes in the instance unqualified. An example of the document is below: <?xml version="1.0" encoding="utf-8" ?> <filingreceipt xmlns="http://www.disclosureusa.org/filingreceipt.xsd"> <cpofilingnumber>TX2004043037501</cpofilingnumber>...
0
1440
by: Goodmannewz | last post by:
In the textbook, there is a sentence that "Default XML namespaces(xmlns="...") helps a lot, but can also create problems, as a side effect of the rules for automatic qualification. How to understand "automatic qualification" here? Could you please give me an example? Secondly, unless otherwise specified, a schema prescribes that loal elements and attributes must be "unqualified". What does "unqualified" mean? Could you please giv eme an...
2
2474
by: Jeff S | last post by:
I have the following three lines at the very top of a class file (prior to the namespace declaration line). using System; using System.Data; using System.Data.SqlClient; Then, in a subsequent function in the same file I want to create a connection by entering the following line: SqlClient.SqlConnection cn = new
1
2016
by: Simon | last post by:
Hi - I have a webservice with WSDL specifying 'elementFormDefault' set to 'unqualified'. I find when I try to process the incoming XML the raw XML either looks like this: <s0:rootelement xmlns:s0="myns"> <ChildElement></ChildElement> </s0:rootelement >
3
1930
by: mavis | last post by:
Unqualified element in XSD definition For some reason, we may need to define elements in XSD to be "unqualified". According to the design patterns of XSD, it seems they do not recommend to define elements in this way....it seems it will influence XPATH / XSLT, etc...
9
6483
by: Mark Olbert | last post by:
I'm trying to serialize (using XmlSerializer.Serialize) a class that I generated from an XSD schema using XSD.EXE /c. The problem I'm running into is that the root element needs to be unqualified, and the default namespace needs to be included on it as an attribute. The schema I'm using is this: <xs:schema xmlns:x="urn:schemas-microsoft-com:office:excel" xmlns:html="http://www.w3.org/TR/REC-html40"...
5
3304
by: Jeremy | last post by:
I've got two projects, both reference system, system.data and system.xml and both include the using System.Xml.Serialization and using System at the top of the file. Both also include the XmlElementAttribute attribute on some properties as defined below, but on one project I get the error "'System' denotes a 'namespace' where a 'class' was expected" and the other project I don't. There highlights the word System on...
0
1788
by: Stef Mientki | last post by:
hello, I've syntax error which I totally don't understand: ########## mainfile : import test_upframe2 if __name__ == '__main__': var1 = 33 code = 'print var1 + 3 \n'
0
3016
by: Terry Reedy | last post by:
Stef Mientki wrote: Indendation is screwed. Is the above all do_more body? Which locals does this get you? __init__'s? (locals()?) Isn't this just the same as globals()?
0
9541
by: Hystou | last post by:
Most computers default to English, but sometimes we require a different language, especially when relocating. Forgot to request a specific language before your computer shipped? No problem! You can effortlessly switch the default language on Windows 10 without reinstalling. I'll walk you through it. First, let's disable language synchronization. With a Microsoft account, language settings sync across devices. To prevent any complications,...
0
10252
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
10231
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
9073
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
7565
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
6805
by: conductexam | last post by:
I have .net C# application in which I am extracting data from word file and save it in database particularly. To store word all data as it is I am converting the whole word file firstly in HTML and then checking html paragraph one by one. At the time of converting from word file to html my equations which are in the word document file was convert into image. Globals.ThisAddIn.Application.ActiveDocument.Select();...
0
5585
by: adsilva | last post by:
A Windows Forms form does not have the event Unload, like VB6. What one acts like?
1
4141
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
3
2938
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.