[Cmake-commits] CMake branch, next, updated. v3.6.0-823-g7ed0ced
Brad King
brad.king at kitware.com
Wed Jul 13 10:01:10 EDT 2016
This is an automated email from the git hooks/post-receive script. It was
generated because a ref change was pushed to the repository containing
the project "CMake".
The branch, next has been updated
via 7ed0ced61e19c057e0dc3427b47b15914a6c329d (commit)
via 0e9e6aa85d729da6287f5519a89240ad55281096 (commit)
from 3068a61110162f6972a0392c2821aa3c5c91a69b (commit)
Those revisions listed above that are new to this repository have
not appeared on any other notification email; so we list those
revisions in full, below.
- Log -----------------------------------------------------------------
https://cmake.org/gitweb?p=cmake.git;a=commitdiff;h=7ed0ced61e19c057e0dc3427b47b15914a6c329d
commit 7ed0ced61e19c057e0dc3427b47b15914a6c329d
Merge: 3068a61 0e9e6aa
Author: Brad King <brad.king at kitware.com>
AuthorDate: Wed Jul 13 10:01:09 2016 -0400
Commit: CMake Topic Stage <kwrobot at kitware.com>
CommitDate: Wed Jul 13 10:01:09 2016 -0400
Merge topic 'findicu' into next
0e9e6aa8 Tests: Run clang-format on FindICU test code
https://cmake.org/gitweb?p=cmake.git;a=commitdiff;h=0e9e6aa85d729da6287f5519a89240ad55281096
commit 0e9e6aa85d729da6287f5519a89240ad55281096
Author: Brad King <brad.king at kitware.com>
AuthorDate: Wed Jul 13 10:01:02 2016 -0400
Commit: Brad King <brad.king at kitware.com>
CommitDate: Wed Jul 13 10:01:02 2016 -0400
Tests: Run clang-format on FindICU test code
diff --git a/Tests/FindICU/Test/main.cpp b/Tests/FindICU/Test/main.cpp
index 73c3ee1..64cc5d3 100644
--- a/Tests/FindICU/Test/main.cpp
+++ b/Tests/FindICU/Test/main.cpp
@@ -1,21 +1,20 @@
-#include <unicode/utypes.h>
-#include <unicode/ustring.h>
#include <unicode/uclean.h>
+#include <unicode/ustring.h>
+#include <unicode/utypes.h>
+#include <unicode/ucal.h>
#include <unicode/ucnv.h>
#include <unicode/udat.h>
-#include <unicode/ucal.h>
-int
-main()
+int main()
{
- UConverter *cnv = 0;
+ UConverter* cnv = 0;
UErrorCode status = U_ZERO_ERROR;
ucnv_open(NULL, &status);
UChar uchars[100];
- const char *chars = "Test";
- if(cnv&&U_SUCCESS(status)) {
+ const char* chars = "Test";
+ if (cnv && U_SUCCESS(status)) {
int32_t len = ucnv_toUChars(cnv, uchars, 100, chars, -1, &status);
}
-----------------------------------------------------------------------
Summary of changes:
Tests/FindICU/Test/main.cpp | 15 +++++++--------
1 file changed, 7 insertions(+), 8 deletions(-)
hooks/post-receive
--
CMake
More information about the Cmake-commits
mailing list