move some defines from headers to cpp files (to improve ABI stability). add some documentation. regenerate html. minor fixes to documentation script
This commit is contained in:
@@ -57,6 +57,7 @@ static_links = \
|
||||
anon_index = 0
|
||||
|
||||
category_mapping = {
|
||||
'session.hpp': 'Session',
|
||||
'error_code.hpp': 'Error Codes',
|
||||
'file.hpp': 'File',
|
||||
'storage.hpp': 'Custom Storage',
|
||||
@@ -163,6 +164,7 @@ def looks_like_variable(line):
|
||||
return True
|
||||
|
||||
def looks_like_function(line):
|
||||
if line.startswith('friend'): return False
|
||||
if '::' in line.split('(')[0].split(' ')[-1]: return False
|
||||
if line.startswith(','): return False
|
||||
if line.startswith(':'): return False
|
||||
|
Reference in New Issue
Block a user