-
I agree, it would be nice.
I started developing a small test, just a proof of concept for a scheduling framework (very targeted on my problem), and here's what I'm missing (some of these have a solution, albeit a complex one, for which an helper could be interesting):
- Channeling between sets and array of booleans (is posting an series of createMemberXY the way?)
- Equality constraint on...
2008-04-09 09:58:05 UTC in choco
-
I have the same problem in windows (often) and even in refit console (less frequently)!
BTW I had the "Windows Menu" problem even before, when only bootcamp was installed.
I really don't think this is a rEFIt issue, but rather a MBP2,2 issue.
2006-12-02 10:33:04 UTC in rEFIt
-
I have a 3 partition setup:
OSX (Boot)
Fat32 (Data)
Win2003 (Boot)
rEFIt was the only way to make this work (in particular, my main problem was to sync MBR and EFI).
rEFIt is nearly perfect for my purposes, but it displays all 3 partitions in the boot menu. It would be nice if it could hide non bootable partitions.
I know detecting "non bootalble partitions" could be...
2006-12-02 10:29:24 UTC in rEFIt
-
I had a test like this:
for(int i = 0; i < arrsize; i++) {
x[i] = i;
}
for(int i = 0; i < arrsize; i++) {
CPPUNIT_ASSERT(x[i] == i);
}
and noticed it was REALLY TOO SLOW.
I figured out what's the point: CPPUNIT_ASSERT always
calls CPPUNIT_NS::Asserter::failIf passing two
std::string as parameters, so the compiler wasn't...
2006-08-11 13:02:15 UTC in CppUnit - C++ port of JUnit