From 6ebf390d12396278a0093283e7c5bd2bc9fd050d Mon Sep 17 00:00:00 2001 From: arghdos <arghdos@gmail.com> Date: Wed, 9 Aug 2017 15:36:03 -0400 Subject: [PATCH] fix docstring --- loopy/target/c/c_execution.py | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/loopy/target/c/c_execution.py b/loopy/target/c/c_execution.py index a3e14f3c3..582d8665c 100644 --- a/loopy/target/c/c_execution.py +++ b/loopy/target/c/c_execution.py @@ -230,8 +230,7 @@ class CCompiler(object): class CppCompiler(CCompiler): - """Subclass of Compiler to invoke a C++ compiler. - Defaults to g++""" + """Subclass of CCompiler to invoke a C++ compiler.""" source_suffix = 'cpp' default_exe = 'g++' default_compile_flags = '-g -O3'.split() -- GitLab