1
2
3
4
5
6
7
8
9
10
11
12
13
|
# Ignore private functions
[suppress_function]
symbol_version_regexp = .*_DETAIL_.*
drop = yes
# Ignore private types
[suppress_type]
symbol_version_regexp = .*_DETAIL_.*
drop = yes
# Ignore library type definition spelling updates
[suppress_type]
name = glm::mat4
|