Author: dsahlberg
Date: Sun Sep 15 10:48:10 2024
New Revision: 1920670

URL: http://svn.apache.org/viewvc?rev=1920670&view=rev
Log:
Refer to the authorative explanation why we use CONSTANT and not DATA, even
though it causes an LNK4087 warning!

* build\generator\extractor.py
  (__main__): Just a comment


Modified:
    subversion/trunk/build/generator/extractor.py

Modified: subversion/trunk/build/generator/extractor.py
URL: 
http://svn.apache.org/viewvc/subversion/trunk/build/generator/extractor.py?rev=1920670&r1=1920669&r2=1920670&view=diff
==============================================================================
--- subversion/trunk/build/generator/extractor.py (original)
+++ subversion/trunk/build/generator/extractor.py Sun Sep 15 10:48:10 2024
@@ -67,6 +67,8 @@ if __name__ == '__main__':
     for func in extract_funcs(fname):
       print(func)
     if os.path.basename(fname) == 'svn_ctype.h':
+      # See libsvn_subr/ctype.c for an explanation why we use CONSTANT and not
+      # DATA, even though it causes an LNK4087 warning!
       print('svn_ctype_table = svn_ctype_table_internal CONSTANT')
     elif os.path.basename(fname) == 'svn_wc_private.h':
       # svn_wc__internal_walk_children() is now internal to libsvn_wc


Reply via email to