Search Results

Search found 2 results on 1 pages for 'warpspace'.

Page 1/1 | 1 

  • How to get BURG on 12.10 (Quantal Quetzal)

    - by Warpspace
    I've been using BURG for years to get rid of the eye sore that is the standard GRUB interface. When I upgraded to Quantal, the repository does not contain the updated information. I.e. after I add sudo add-apt-repository ppa:n-muench/burg sudo apt-get update I get the annoying response W: Failed to fetch http://ppa.launchpad.net/n-muench/burg/ubuntu/dists/quantal/main/binary-amd64/Packages 404 Not Found It's been like this for a month, contrary to various websites which say it works. Is BURG being maintained? Have they created a better alternative (such as integration with GRUB, like it should have been in the first place). How do I get a decent-looking bootloader?

    Read the article

  • How to initialise a STL vector/list with a class without invoking the copy constructor

    - by Warpspace
    I have a C++ program that uses a std::list containing instances of a class. If I call e.g. myList.push_back(MyClass(variable)); it goes through the process of creating a temporary variable, and then immediately copies it to the vector, and afterwards deletes the temporary variable. This is not nearly as efficient as I want, and sucks when you need a deep copy. I would love to have the constructor of my class new something and not have to implement a copy constructor just to allocate my memory for the second time and waste runtime. I'd also rather not have to immediately find the class instance from the vector/list and then manually allocate the memory (or do something horrible like allocate the memory in the copy constructor itself). Is there any way around this (I'm not using Visual Studio BTW)?

    Read the article

1