Преглед на файлове

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"