浏览代码

tools/dev/starpu_check_documented.py: do not add a ';' as it excludes inline functions

Nathalie Furmento 13 年之前
父节点
当前提交
ae29c9e700
共有 1 个文件被更改,包括 1 次插入1 次删除
  1. 1 1
      tools/dev/starpu_check_documented.py

+ 1 - 1
tools/dev/starpu_check_documented.py

@@ -28,7 +28,7 @@ for docfile in os.listdir('doc/chapters'):
         loadFunctionsAndDatatypes(functions, datatypes, "doc/chapters/"+docfile)
 
 for function in functions:
-    x = os.system("fgrep -l \"" + function[0] + ";\" include/*.h mpi/*.h starpufft/*h >foo")
+    x = os.system("fgrep -l \"" + function[0] + "\" include/*.h mpi/*.h starpufft/*h >foo")
     if x != 0:
         print "Function <" + bcolors.FAILURE + function[0] + bcolors.NORMAL + " > documented in <" + function[1] + "> does not exist in StarPU's API"