Skip to content
Snippets Groups Projects
Commit 86c46699 authored by Richard Angersbach's avatar Richard Angersbach
Browse files

Remove option to mark individual functions as extern C

parent e1a88a20
1 merge request!25Draft: C Interfacing
......@@ -384,7 +384,7 @@ class SfgBasicComposer(SfgIComposer):
if self._ctx.impl_file is None:
seq.inline()
if self._ctx.c_interfacing:
seq.externC()
seq._externC = True
return seq
......@@ -701,11 +701,6 @@ class SfgFunctionSequencerBase:
self._inline = True
return self
def externC(self):
"""Mark this function as ``extern "C"``."""
self._externC = True
return self
def constexpr(self):
"""Mark this function as ``constexpr``."""
self._constexpr = True
......
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