Author Topic: Unidentified wanrning  (Read 3513 times)

Offline Sasha

  • Multiple posting newcomer
  • *
  • Posts: 21
Unidentified wanrning
« on: December 16, 2020, 05:17:30 pm »
Why CB Old Version compiles the following code Successfully with warning on line #8

#include <iostream>
#include <vector>
using namespace std;
int main()
{
    vector <string> strings(7);
    strings[4] = "Busted...";
    cout << strings[4] << endl;
    return 0;
}

Offline sodev

  • Regular
  • ***
  • Posts: 496
Re: Unidentified wanrning
« Reply #1 on: December 16, 2020, 06:36:46 pm »
That screenshot is from Eclipse :P

Posting the warning message might also help...

Offline oBFusCATed

  • Developer
  • Lives here!
  • *****
  • Posts: 13413
    • Travis build status
Re: Unidentified wanrning
« Reply #2 on: December 16, 2020, 07:39:34 pm »
Because:
1. You're using different compiler.
2. You're using different set of command line arguments.
(most of the time I ignore long posts)
[strangers don't send me private messages, I'll ignore them; post a topic in the forum, but first read the rules!]

Offline omlk

  • Multiple posting newcomer
  • *
  • Posts: 110
« Last Edit: December 16, 2020, 08:24:50 pm by omlk »
https://omlk.itch.io
from: Ukraine, Ivano-Frankivs`k  https://w.wiki/7vBe

Offline Sasha

  • Multiple posting newcomer
  • *
  • Posts: 21
Re: Unidentified wanrning
« Reply #4 on: December 19, 2020, 05:26:47 pm »
Thank you for correcting me, the warning occurred in Eclipse and in CB also, I have updated to the next old version on windows XP, and everything works fine.