From 97b4841208a1cee5ba0fb982096c404504fa58b3 Mon Sep 17 00:00:00 2001 From: arghdos <arghdos@gmail.com> Date: Wed, 9 Aug 2017 15:39:32 -0400 Subject: [PATCH] fix naming --- loopy/target/c/c_execution.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/loopy/target/c/c_execution.py b/loopy/target/c/c_execution.py index 582d8665c..7e1d02a9d 100644 --- a/loopy/target/c/c_execution.py +++ b/loopy/target/c/c_execution.py @@ -229,7 +229,7 @@ class CCompiler(object): return checksum, ctypes.CDLL(ext_file) -class CppCompiler(CCompiler): +class CPlusPlusCompiler(CCompiler): """Subclass of CCompiler to invoke a C++ compiler.""" source_suffix = 'cpp' default_exe = 'g++' -- GitLab