Skip to content

Commit dcafccf

Browse files
author
Povilas Kanapickas
committed
Gadgets/Coliru: add GCC 4.7 C++11 option
1 parent d330054 commit dcafccf

1 file changed

Lines changed: 2 additions & 1 deletion

File tree

gadgets/coliru_compiler.js

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -14,12 +14,13 @@ function Editor(root) {
1414
cc: [
1515
{ title: 'GCC 4.6', cmd: 'g++-4.6 -std=c++98 ' },
1616
{ title: 'GCC 4.7', cmd: 'g++-4.7 -std=c++98 ' },
17+
{ title: 'GCC 4.7 (C++11)', cmd: 'g++-4.7 -std=c++11 ' },
1718
{ title: 'GCC 4.8', cmd: 'g++-4.8 -std=c++98 ' },
1819
{ title: 'GCC 4.8 (C++11)', cmd: 'g++-4.8 -std=c++11 ' },
1920
{ title: 'clang 3.4', cmd: 'clang++ -std=c++98 ' },
2021
{ title: 'clang 3.4 (C++11)', cmd: 'clang++ -std=c++11 '}
2122
],
22-
default_id: 3,
23+
default_id: 4,
2324
opt: ' -O2 -Wall -Wextra -pedantic -pthread main.cpp ',
2425
}
2526

0 commit comments

Comments
 (0)