Public bug reported:

On 7.04
The following code will not compile, it yells about missing not being able to 
find the STD::String

#include <iostream>
#include <string>
using namespace std;

int main ()
{
        string blah = "blah";
        cout << "this was a test\n";
        return 0;
}

However the following code DOES compile

#include <iostream>
#include <string>
using namespace std;

int main ()
{
        //string blah = "blah";
        cout << "this was a test\n";
        return 0;
}

even though its using the STD::cout

This also effects apps I have developed, they work perfectly in every
distro I have tried (many), but crashes X when moved or resized in 7.04

You can download this app at www.rpgds.com to try yourself

** Affects: Ubuntu
     Importance: Undecided
         Status: Unconfirmed

** Description changed:

  On 7.04
  The following code will not compile, it yells about missing not being able to 
find the STD::String
  
  #include <iostream>
  #include <string>
  using namespace std;
  
  int main ()
  {
        string blah = "blah";
          cout << "this was a test\n";
          return 0;
  }
  
  However the following code DOES compile
  
  #include <iostream>
  #include <string>
  using namespace std;
  
  int main ()
  {
        //string blah = "blah";
          cout << "this was a test\n";
          return 0;
  }
  
  even though its using the STD::cout
  
- This also effects apps I have developed, they wark perfectly in every
+ This also effects apps I have developed, they work perfectly in every
  distro I have tried (many), but crashes X when moved or resized in 7.04
  
  You can download this app at www.rpgds.com to try yourself

-- 
Critical Bug in STD Libs! 7.04
https://bugs.launchpad.net/bugs/118338
You received this bug notification because you are a member of Ubuntu
Bugs, which is the bug contact for Ubuntu.

-- 
ubuntu-bugs mailing list
[email protected]
https://lists.ubuntu.com/mailman/listinfo/ubuntu-bugs

Reply via email to