Click here to Skip to main content
15,892,643 members
Home / Discussions / ATL / WTL / STL
   

ATL / WTL / STL

 
QuestionCreate 32 and 64 bits COM dll Pin
MrKBA1-Feb-12 22:11
MrKBA1-Feb-12 22:11 
AnswerRe: Create 32 and 64 bits COM dll Pin
«_Superman_»3-Feb-12 17:29
professional«_Superman_»3-Feb-12 17:29 
QuestionGeneric terms....!!! plz help Pin
♥…ЯҠ…♥31-Jan-12 17:48
professional♥…ЯҠ…♥31-Jan-12 17:48 
AnswerRe: Generic terms....!!! plz help Pin
Richard MacCutchan31-Jan-12 21:27
mveRichard MacCutchan31-Jan-12 21:27 
AnswerRe: Generic terms....!!! plz help Pin
Richard MacCutchan1-Feb-12 3:38
mveRichard MacCutchan1-Feb-12 3:38 
RantRe: Generic terms....!!! plz help Pin
♥…ЯҠ…♥6-Feb-12 17:39
professional♥…ЯҠ…♥6-Feb-12 17:39 
GeneralRe: Generic terms....!!! plz help Pin
Richard MacCutchan6-Feb-12 22:37
mveRichard MacCutchan6-Feb-12 22:37 
QuestionMS C++ gives error for fully-qualified ctor name in initializer list Pin
old_hacker27-Jan-12 11:23
old_hacker27-Jan-12 11:23 
Compiling C++ with MS VS 2010, and getting an error when the initializer list for a derived class has a fully-qualified name for the base class constructor. Example:
C++
class base {
public:
  base(int i);
...
};
class myclass : public base {
public:
  myclass();
...
};
myclass::myclass() : base::base(123)
{
...

The GNU compiler on Linux is quite happy, but the MS compiler objects to the (unnecessary) qualification of the base class constructor; it insists on:
C++
myclass::myclass() : base(123)
{
...

What I'd really like to know is, which compiler is wrong? The C++ standard should either allow or prohibit the extra qualification, but I can't find an online copy of a standard.

It's only a problem because of a lot of code in a project that I've inherited is written that way; it used to compile on older versions of MS, but no longer.
SuggestionRe: MS C++ gives error for fully-qualified ctor name in initializer list Pin
Pablo Aliskevicius28-Jan-12 22:25
Pablo Aliskevicius28-Jan-12 22:25 
AnswerRe: MS C++ gives error for fully-qualified ctor name in initializer list Pin
Richard MacCutchan28-Jan-12 22:37
mveRichard MacCutchan28-Jan-12 22:37 
QuestionCan you help me solve my OTS Elevated COM Object error? Pin
Christine_Irene26-Jan-12 3:08
Christine_Irene26-Jan-12 3:08 
QuestionStore STL iterator in CListBox Pin
LionAM17-Jan-12 0:36
LionAM17-Jan-12 0:36 
AnswerRe: Store STL iterator in CListBox Pin
Richard MacCutchan17-Jan-12 0:52
mveRichard MacCutchan17-Jan-12 0:52 
GeneralRe: Store STL iterator in CListBox Pin
LionAM17-Jan-12 1:11
LionAM17-Jan-12 1:11 
GeneralRe: Store STL iterator in CListBox Pin
Richard MacCutchan17-Jan-12 1:31
mveRichard MacCutchan17-Jan-12 1:31 
GeneralRe: Store STL iterator in CListBox Pin
LionAM17-Jan-12 2:02
LionAM17-Jan-12 2:02 
GeneralRe: Store STL iterator in CListBox Pin
Richard MacCutchan17-Jan-12 3:00
mveRichard MacCutchan17-Jan-12 3:00 
GeneralRe: Store STL iterator in CListBox Pin
LionAM17-Jan-12 5:16
LionAM17-Jan-12 5:16 
GeneralRe: Store STL iterator in CListBox Pin
Richard MacCutchan17-Jan-12 5:22
mveRichard MacCutchan17-Jan-12 5:22 
GeneralRe: Store STL iterator in CListBox Pin
LionAM17-Jan-12 9:09
LionAM17-Jan-12 9:09 
GeneralRe: Store STL iterator in CListBox Pin
Richard MacCutchan17-Jan-12 9:31
mveRichard MacCutchan17-Jan-12 9:31 
AnswerRe: Store STL iterator in CListBox Pin
«_Superman_»18-Jan-12 18:23
professional«_Superman_»18-Jan-12 18:23 
GeneralRe: Store STL iterator in CListBox Pin
LionAM19-Jan-12 9:04
LionAM19-Jan-12 9:04 
AnswerRe: Store STL iterator in CListBox Pin
Orjan Westin19-Jan-12 4:24
professionalOrjan Westin19-Jan-12 4:24 
GeneralRe: Store STL iterator in CListBox Pin
LionAM19-Jan-12 8:54
LionAM19-Jan-12 8:54 

General General    News News    Suggestion Suggestion    Question Question    Bug Bug    Answer Answer    Joke Joke    Praise Praise    Rant Rant    Admin Admin   

Use Ctrl+Left/Right to switch messages, Ctrl+Up/Down to switch threads, Ctrl+Shift+Left/Right to switch pages.