aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authoralon@honor <none@none>2010-09-25 13:08:16 -0700
committeralon@honor <none@none>2010-09-25 13:08:16 -0700
commit42725f4dd5a51beb555272fc13d30b3d671e151f (patch)
treeb7c3f699fbd006701b36197a1f3adf72867a8638
parent8b5958d01c5fc846a136b5c12c36cee50882c96f (diff)
additional function qualifiers to ignore
-rw-r--r--src/intertyper.js2
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,