wrap tty.die to 80 chars
This commit is contained in:
parent
c37ea9aff5
commit
7a2d65967c
@ -119,7 +119,9 @@ def version(self):
|
|||||||
@property
|
@property
|
||||||
def openmp_flag(self):
|
def openmp_flag(self):
|
||||||
# If it is not overridden, assume it is not supported and warn the user
|
# If it is not overridden, assume it is not supported and warn the user
|
||||||
tty.die("The compiler you have chosen does not currently support OpenMP. If you think it should, please edit the compiler subclass and submit a pull request or issue.")
|
tty.die("The compiler you have chosen does not currently support OpenMP.",
|
||||||
|
"If you think it should, please edit the compiler subclass and",
|
||||||
|
"submit a pull request or issue.")
|
||||||
|
|
||||||
|
|
||||||
# This property should be overridden in the compiler subclass if
|
# This property should be overridden in the compiler subclass if
|
||||||
@ -127,14 +129,20 @@ def openmp_flag(self):
|
|||||||
@property
|
@property
|
||||||
def cxx11_flag(self):
|
def cxx11_flag(self):
|
||||||
# If it is not overridden, assume it is not supported and warn the user
|
# If it is not overridden, assume it is not supported and warn the user
|
||||||
tty.die("The compiler you have chosen does not currently support C++11. If you think it should, please edit the compiler subclass and submit a pull request or issue.")
|
tty.die("The compiler you have chosen does not currently support C++11.",
|
||||||
|
"If you think it should, please edit the compiler subclass and",
|
||||||
|
"submit a pull request or issue.")
|
||||||
|
|
||||||
|
|
||||||
# This property should be overridden in the compiler subclass if
|
# This property should be overridden in the compiler subclass if
|
||||||
# C++14 is supported by that compiler
|
# C++14 is supported by that compiler
|
||||||
@property
|
@property
|
||||||
def cxx14_flag(self):
|
def cxx14_flag(self):
|
||||||
# If it is not overridden, assume it is not supported and warn the user
|
# If it is not overridden, assume it is not supported and warn the user
|
||||||
tty.die("The compiler you have chosen does not currently support C++14. If you think it should, please edit the compiler subclass and submit a pull request or issue.")
|
tty.die("The compiler you have chosen does not currently support C++14.",
|
||||||
|
"If you think it should, please edit the compiler subclass and",
|
||||||
|
"submit a pull request or issue.")
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
#
|
#
|
||||||
|
Loading…
Reference in New Issue
Block a user