Author Topic: SVN Linefeed and propset issues  (Read 3665 times)

Offline stahta01

  • Lives here!
  • ****
  • Posts: 7589
    • My Best Post
SVN Linefeed and propset issues
« on: October 28, 2014, 01:18:09 pm »
FYI:

I have decided to start a thread on the possible linefeed issues I find in my Git Repo that likely exist in the SVN Repo.

There is no SVN property set on file src/plugins/contrib/SpellChecker/hunspell/src/parsers/xmlparser.cxx.
I think at least svn:eol-style needs done.

Code
svn propset svn:eol-style native src/plugins/contrib/SpellChecker/hunspell/src/parsers/xmlparser.cxx

Code
Index: src/plugins/contrib/SpellChecker/hunspell/src/parsers/xmlparser.cxx
===================================================================
--- src/plugins/contrib/SpellChecker/hunspell/src/parsers/xmlparser.cxx (revision 10016)
+++ src/plugins/contrib/SpellChecker/hunspell/src/parsers/xmlparser.cxx (working copy)

Property changes on: src/plugins/contrib/SpellChecker/hunspell/src/parsers/xmlparser.cxx
___________________________________________________________________
Added: svn:eol-style
## -0,0 +1 ##
+native
\ No newline at end of property

Tim S.
C Programmer working to learn more about C++ and Git.
On Windows 7 64 bit and Windows 10 64 bit.
--
When in doubt, read the CB WiKi FAQ. http://wiki.codeblocks.org

Offline ollydbg

  • Developer
  • Lives here!
  • *****
  • Posts: 5913
  • OpenCV and Robotics
    • Chinese OpenCV forum moderator
Re: SVN Linefeed and propset issues
« Reply #1 on: October 30, 2014, 08:22:43 am »
In trunk now, thanks!
If some piece of memory should be reused, turn them to variables (or const variables).
If some piece of operations should be reused, turn them to functions.
If they happened together, then turn them to classes.