Commit 0066fa01 authored by Stefan Behnel's avatar Stefan Behnel

Remove duplicated C compiler option from tests that is already set by the test...

Remove duplicated C compiler option from tests that is already set by the test runner via the cpp11 tag.
parent d9491dc9
# mode: run # mode: run
# tag: cpp, werror # tag: cpp, werror, cpp11
# cython: experimental_cpp_class_def=True # cython: experimental_cpp_class_def=True
# distutils: extra_compile_args=-std=c++0x
cdef double pi cdef double pi
from math import pi from math import pi
......
# mode: run # mode: run
# tag: cpp, werror, cpp11 # tag: cpp, werror, cpp11
# distutils: extra_compile_args=-std=c++0x
from libcpp.memory cimport unique_ptr, shared_ptr, default_delete, dynamic_pointer_cast from libcpp.memory cimport unique_ptr, shared_ptr, default_delete, dynamic_pointer_cast
from libcpp cimport nullptr from libcpp cimport nullptr
......
# mode: run # mode: run
# tag: cpp, werror # tag: cpp, werror, cpp11
# distutils: extra_compile_args=-std=c++0x
import sys import sys
from libcpp.map cimport map from libcpp.map cimport map
......
# mode: run # mode: run
# tag: cpp, werror, cpp11 # tag: cpp, werror, cpp11
# distutils: extra_compile_args=-std=c++0x
import sys import sys
from libcpp.unordered_map cimport unordered_map from libcpp.unordered_map cimport unordered_map
......
# distutils: extra_compile_args=-std=c++0x
# mode: run # mode: run
# tag: cpp # tag: cpp, cpp11
from libcpp.functional cimport function from libcpp.functional cimport function
cimport cpp_function_lib cimport cpp_function_lib
......
# mode: run # mode: run
# tag: cpp, werror, cpp11 # tag: cpp, werror, cpp11
# distutils: extra_compile_args=-std=c++11
from libcpp.string cimport string from libcpp.string cimport string
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment