[mlpack-git] [mlpack] CMake block termination commands have unnecessary arguments (#585)

ajjl notifications at github.com
Mon Mar 21 16:08:14 EDT 2016


Previously CMake block termination commands were required to have arguments matching the command starting the block. This is no longer necessary and not the preferred style. This type of change has been implemented in other open source projects such as: ITK, vxl, and BRAINSTools. It is the preferred KDE style.

KDE style reference:
https://community.kde.org/Policies/CMake_Coding_Style

Ex: 
if (SOMETHING)
  do_this()
endif (SOMETHING)

should be:
if (SOMETHING)
  do_this()
endif()

---
You are receiving this because you are subscribed to this thread.
Reply to this email directly or view it on GitHub:
https://github.com/mlpack/mlpack/issues/585
-------------- next part --------------
An HTML attachment was scrubbed...
URL: <https://mailman.cc.gatech.edu/pipermail/mlpack-git/attachments/20160321/0a7ae4c8/attachment.html>


More information about the mlpack-git mailing list