Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/windirstat/llfio.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorNiall Douglas (s [underscore] sourceforge {at} nedprod [dot] com) <spamtrap@nedprod.com>2017-08-03 04:20:26 +0300
committerNiall Douglas (s [underscore] sourceforge {at} nedprod [dot] com) <spamtrap@nedprod.com>2017-08-03 04:20:26 +0300
commit8329870c9634d3baadb7ed19db5d248b8e2281df (patch)
tree2e588a48e434328c9d21e1ac17ec4c7b9c702b9f /scripts
parent540b2946a6c2e2a92a01d91e022843e51c8ed66f (diff)
Add free functions for extents() and ZERO_CHECK.Build.CppClean.log()
Diffstat (limited to 'scripts')
-rw-r--r--scripts/make_free_functions.py1
1 files changed, 1 insertions, 0 deletions
diff --git a/scripts/make_free_functions.py b/scripts/make_free_functions.py
index 39fc1a89..b3fa023b 100644
--- a/scripts/make_free_functions.py
+++ b/scripts/make_free_functions.py
@@ -65,6 +65,7 @@ for header in glob.glob("../include/afio/*/*.hpp"):
def replace(function, item):
function = function.replace(' '+item+' ', ' '+classname+'::'+item+' ')
function = function.replace('('+item+' ', '('+classname+'::'+item+' ')
+ function = function.replace('<'+item+',', '<'+classname+'::'+item+',')
function = function.replace('<'+item+'>', '<'+classname+'::'+item+'>')
function = function.replace(' '+item+'>', ' '+classname+'::'+item+'>')
return function