Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

Is it possible to enable array bounds checking in g++?

Tags:

c++

g++

Is it possible to have g++ show an error when compiling the following file with some flag?

#include <iostream>
using namespace std;

int main()
{
   int arr[ 2 ];

   cout << arr[ 4 ] << endl;

   return 0;
}

I saw some things like gcc -Wall -O2 main.c which only works with C, not C++.

like image 555
827 Avatar asked Jan 24 '11 04:01

827


1 Answers

Not at compile time. You might be able to check that at runtime though.

For that take a look at: Runtime array bounds checking with g++

like image 79
vmpstr Avatar answered Sep 28 '22 12:09

vmpstr