Since 4/2/2012 5:37:38 AM, aschoedl has written 10 articles and participated in 7 conversations. aschoedl signature: aschoedl
aschoedl's articles:
Items(10) /1
C++0x std::regex expression templates?3356 (2/28/2011 1:54:33 PM) comp.lang.c++.moderated As far as I can see, there is no way to embed a plain string into a
regex, without escaping the string. Same with characters. Isn't that a
bad omission of the upcoming standard? Escaping something just to
un... Arno
MurmurHash64 inconsistencies021 (6/28/2010 4:07:15 PM) comp.programming Hello, looking at MurmurHash which has been mentioned in this group before, at http://sites.google.com/site/murmurhash/ there are a number of differences between MurmurHash2A (producing a 32 bit hash), which... Arno
enum operator overload ambiguity6478 (1/28/2010 7:19:01 PM) comp.lang.c++.moderated Hello,
is this expected behavior or a bug in Visual C++ 9?
enum E {
e1
};
bool operator<=( E, E ) {
return false;
}
void main()
{
E e1;
e1<=e1;
}
leads to compiler error
test6.cpp(... Arno
notes.ini search order1527 (5/15/2009 4:42:10 PM) comp.groupware.lotus-notes.admin I am new to Notes, and it seems bizarre that I cannot find the answer
to such a simple question:
How does Notes find its NOTES.INI? I identified the following ways so
far:
command line: notes.exe =
pre... Arno
template code size optimization12179 (1/30/2009 7:14:20 PM) comp.lang.c++.moderated Does any compiler offer code size optimization for C++ templates or is anyone even doing research in this direction? In the simplest case, code written like template void test(); could be transformed (often) ... Arno
generalized STL set/map5104 (4/20/2007 11:29:22 AM) comp.lang.c++.moderated Hello, I am sure this topic has been brought up before, but I have no good understanding what the underlying design rationale of the current map/ set is, and the current design gives me a frequent headache whe... Arno
Complex objects initialized at compile time538 (2/12/2006 11:13:14 AM) comp.lang.c++ Hello, here is my problem: I have a complex data type, like a std::vector and need some global constant values of this type. The type is also used non-constant throughout the program, so I do not want to use d... Arno
cast ambiguities730 (9/30/2005 7:18:07 PM) comp.lang.c++ Hello, I want to write classes, which can be used as interchangeably as possible. The background is that they are smartpointers, which should implicitly cast between each other. As a toy example, let's take t... Arno
aschoedl's replies:
Items(4) /1
cast ambiguities730 (9/30/2005 7:18:07 PM) comp.lang.c++ Hello, I want to write classes, which can be used as interchangeably as possible. The background is that they are smartpointers, which should implicitly cast between each other. As a toy example, let's take t... aschoedl(17)
Bimodal random generation - help221 (10/1/2005 3:27:17 AM) comp.lang.c++ Hi, I would like to generate random values which are in bimodal distribution. If I can give the two peak means and the variance values, can I get any function to generate them from the uniform random values. ... abhinay07(6)
Complex objects initialized at compile time538 (2/12/2006 11:13:14 AM) comp.lang.c++ Hello, here is my problem: I have a complex data type, like a std::vector and need some global constant values of this type. The type is also used non-constant throughout the program, so I do not want to use d... aschoedl(17)
Basic Bit Operation Question.628 (2/12/2006 1:54:36 PM) comp.lang.c++ Hi every one, I got very basic question, here i go: Say i have 11001 11010 bits which are infact 10 bits. Now i want to address every bit so if it is zero i would add one and if it is one then i would be addi... jhonstranger(15)