mirror of
https://github.com/nvbn/thefuck.git
synced 2025-02-20 20:09:07 +00:00
Add a C++11
rule
This commit is contained in:
parent
95007220fb
commit
c749615ad6
11
thefuck/rules/c++11.py
Normal file
11
thefuck/rules/c++11.py
Normal file
@ -0,0 +1,11 @@
|
||||
def match(command, settings):
|
||||
return (('g++' in command.script or 'clang++' in command.script) and
|
||||
('This file requires compiler and library support for the '
|
||||
'ISO C++ 2011 standard.' in command.stderr or
|
||||
'-Wc++11-extensions' in command.stderr
|
||||
)
|
||||
)
|
||||
|
||||
|
||||
def get_new_command(command, settings):
|
||||
return command.script + ' -std=c++11'
|
Loading…
x
Reference in New Issue
Block a user