Fix false alarm from clang-tidy

Fix #1174
diff --git a/include/rapidjson/internal/stack.h b/include/rapidjson/internal/stack.h
index 5c5398c..89558d0 100644
--- a/include/rapidjson/internal/stack.h
+++ b/include/rapidjson/internal/stack.h
@@ -100,7 +100,7 @@
     void ShrinkToFit() { 
         if (Empty()) {
             // If the stack is empty, completely deallocate the memory.
-            Allocator::Free(stack_);
+            Allocator::Free(stack_); // NOLINT (+clang-analyzer-unix.Malloc)
             stack_ = 0;
             stackTop_ = 0;
             stackEnd_ = 0;