diff options
author | alon@honor <none@none> | 2010-09-25 13:08:16 -0700 |
---|---|---|
committer | alon@honor <none@none> | 2010-09-25 13:08:16 -0700 |
commit | 42725f4dd5a51beb555272fc13d30b3d671e151f (patch) | |
tree | b7c3f699fbd006701b36197a1f3adf72867a8638 | |
parent | 8b5958d01c5fc846a136b5c12c36cee50882c96f (diff) |
additional function qualifiers to ignore
-rw-r--r-- | src/intertyper.js | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/intertyper.js b/src/intertyper.js index 28dc735c..f9182db4 100644 --- a/src/intertyper.js +++ b/src/intertyper.js @@ -281,7 +281,7 @@ function intertyper(data) { substrate.addZyme('FuncHeader', { processItem: function(item) { item.tokens = item.tokens.filter(function(token) { - return ['internal', 'signext', 'zeroext', 'nounwind', 'define', 'linkonce_odr', 'inlinehint', '{'].indexOf(token.text) == -1; + return ['available_externally', 'weak', 'internal', 'signext', 'zeroext', 'nounwind', 'define', 'linkonce_odr', 'inlinehint', '{'].indexOf(token.text) == -1; }); return [{ __result__: true, |