Since 4/2/2012 6:16:11 AM, 0xCHAOS has written 7 articles and participated in 2 conversations. 0xCHAOS signature: 0xCHAOS
0xCHAOS's articles:
Items(7) /1
Enum bitfield (Visual Studio Bug or not?)22165 (9/8/2008 2:28:47 PM) comp.lang.c++.moderated I opened the following bug report. https://connect.microsoft.com/VisualStudio/feedback/ViewFeedback.aspx?FeedbackID=366557 To summarize, when you use an enum as a bitfield, MSVC will sign- extend its value whe... Jason
Append Iterator13149 (10/26/2006 2:14:24 PM) comp.lang.c++.moderated Is there any sort of iterator adapter in the stl that acts like a forward iterator, but pushes back new elements when incrementing it would set it equal to end? I ask because I want to build a collection using... Jason
Ideal min/max8127 (9/6/2006 5:57:59 PM) comp.lang.c++.moderated I remember reading about an elegant solution mentioned by Andrei Alexandrescu for generating ideal min and max templates, but I can't find where I read it. The solution involved some sort of double nesting of ... Jason
access modifier (suggestion for C++0x)1182 (8/26/2005 9:43:17 AM) comp.lang.c++.moderated I had an idea for a new access modifier for variables declared inside functions. Using this access modifier would make the variable visible to functions called inside the function where the variable was declar... Jason
implicit conversion chains3171 (7/10/2005 9:38:20 AM) comp.lang.c++.moderated I want to create a reference wrapper, which performs some locking when implicitly converted to a raw reference. I thought that this could be accomplished through the creation of an intermediate temporary objec... Jason
template coord (challenge)8105 (6/7/2005 9:47:58 AM) comp.lang.c++.moderated Is the following possible? Given a templated coordinate class, provide an implicit conversion when the internal types are implicitly convertible, and allow an explicit conversion for the other cases. For inst... Jason
circular definition031 (12/24/2004 10:01:38 PM) comp.text.xml I am trying to set up a schema that will define a structure to hold simple lines of code, where lines consist of function calls with parameters that may or may not be function calls themselves. For instance, I ... CHAOS
0xCHAOS's replies:
Items(1) /1
classes and cons reference...1321 (3/31/2007 11:30:48 PM) comp.lang.c++ Hi guys, I'm dealing with, probably, easy problem, however I'm not sure what to do and whether my way of thinking is correct.. The task is to implement a list of object of a class ListOfElements and then implem... nerd.chixor(7)