Skip to content
Snippets Groups Projects
Commit 83d8b358 authored by Brad King's avatar Brad King Committed by Kitware Robot
Browse files

Merge topic 'test-GEH-vs6'


d59afbd9 Tests: Fix RunCMake.GenerateExportHeader use of size_t

Acked-by: default avatarKitware Robot <kwrobot@kitware.com>
Merge-request: !6059
parents 34f316b4 d59afbd9
No related branches found
No related tags found
No related merge requests found
......@@ -10,7 +10,7 @@
static void rtrim(std::string& str, char byte)
{
const std::size_t size = str.size();
size_t const size = str.size();
if (size && str[size - 1] == byte) {
str.resize(size - 1);
}
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment