Merge pull request #14676 from muxi/fix-inttypes-include

Stop including inttypes.h in gRPC core public header
pull/14640/merge
Vijay Pai 7 years ago committed by GitHub
commit 44fd6557ae
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
  1. 1
      include/grpc/support/log.h
  2. 1
      src/core/lib/gpr/log_linux.cc
  3. 1
      test/core/end2end/cq_verifier.cc
  4. 1
      test/core/end2end/tests/cancel_after_invoke.cc
  5. 1
      test/core/end2end/tests/cancel_before_invoke.cc
  6. 1
      test/core/end2end/tests/cancel_with_status.cc
  7. 1
      test/core/end2end/tests/negative_deadline.cc
  8. 1
      test/core/gpr/mpscq_test.cc
  9. 1
      test/core/gpr/time_test.cc
  10. 1
      test/core/util/test_config.cc
  11. 1
      test/cpp/thread_manager/thread_manager_test.cc

@ -21,7 +21,6 @@
#include <grpc/impl/codegen/port_platform.h>
#include <inttypes.h>
#include <stdarg.h>
#include <stdlib.h> /* for abort() */

@ -32,6 +32,7 @@
#include <grpc/support/log.h>
#include <grpc/support/string_util.h>
#include <grpc/support/time.h>
#include <inttypes.h>
#include <stdarg.h>
#include <stdio.h>
#include <string.h>

@ -18,6 +18,7 @@
#include "test/core/end2end/cq_verifier.h"
#include <inttypes.h>
#include <stdarg.h>
#include <stdio.h>
#include <string.h>

@ -18,6 +18,7 @@
#include "test/core/end2end/end2end_tests.h"
#include <inttypes.h>
#include <stdio.h>
#include <string.h>

@ -18,6 +18,7 @@
#include "test/core/end2end/end2end_tests.h"
#include <inttypes.h>
#include <stdio.h>
#include <string.h>

@ -18,6 +18,7 @@
#include "test/core/end2end/end2end_tests.h"
#include <inttypes.h>
#include <stdio.h>
#include <string.h>

@ -18,6 +18,7 @@
#include "test/core/end2end/end2end_tests.h"
#include <inttypes.h>
#include <stdio.h>
#include <string.h>

@ -18,6 +18,7 @@
#include "src/core/lib/gpr/mpscq.h"
#include <inttypes.h>
#include <stdlib.h>
#include <grpc/support/alloc.h>

@ -21,6 +21,7 @@
#include <grpc/support/log.h>
#include <grpc/support/sync.h>
#include <grpc/support/time.h>
#include <inttypes.h>
#include <limits.h>
#include <stdio.h>
#include <stdlib.h>

@ -18,6 +18,7 @@
#include "test/core/util/test_config.h"
#include <inttypes.h>
#include <signal.h>
#include <stdbool.h>
#include <stdio.h>

@ -16,6 +16,7 @@
*is % allowed in string
*/
#include <inttypes.h>
#include <ctime>
#include <memory>
#include <string>

Loading…
Cancel
Save