compiler: cleanup Nag.cxx11_flag and Pgi.cxx11_flag

This commit is contained in:
Denis Davydov 2016-05-03 17:27:46 +02:00
parent d5a760776a
commit e28ca3922f
2 changed files with 0 additions and 6 deletions

View File

@ -25,11 +25,6 @@ class Nag(Compiler):
def openmp_flag(self): def openmp_flag(self):
return "-openmp" return "-openmp"
@property
def cxx11_flag(self):
tty.die("cxx11_flag() is not implemented for nag. Consider creating a pull-request.")
return "-std=c++11"
@classmethod @classmethod
def default_version(self, comp): def default_version(self, comp):

View File

@ -50,7 +50,6 @@ def openmp_flag(self):
@property @property
def cxx11_flag(self): def cxx11_flag(self):
tty.die("cxx11_flag() is not implemented for pgi. Consider creating a pull-request.")
return "-std=c++11" return "-std=c++11"