Procházet zdrojové kódy

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

Nathalie Furmento před 13 roky
rodič
revize
ae29c9e700
1 změnil soubory, kde provedl 1 přidání a 1 odebrání
  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"