Skip to content

Commit bb88686

Browse files
committed
Allow unused variable
1 parent 811551e commit bb88686

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

jupyter_cpp_kernel/kernel.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -113,7 +113,7 @@ def __init__(self, *args, **kwargs):
113113
self.master_path = mastertemp[1]
114114
self.resDir = path.join(path.dirname(path.realpath(__file__)), 'resources')
115115
filepath = path.join(self.resDir, 'master.cpp')
116-
subprocess.call(['g++', filepath, '-std=c++14', '-rdynamic', '-ldl', '-Wno-unused-variable', '-o', self.master_path])
116+
subprocess.call(['g++', filepath, '-std=c++14', '-rdynamic', '-ldl', '-o', self.master_path])
117117

118118
def cleanup_files(self):
119119
"""Remove all the temporary files created by the kernel"""

0 commit comments

Comments
 (0)