summaryrefslogtreecommitdiff
path: root/src/mongo/platform
diff options
context:
space:
mode:
Diffstat (limited to 'src/mongo/platform')
-rw-r--r--src/mongo/platform/atomic_proxy.h1
-rw-r--r--src/mongo/platform/atomic_proxy_test.cpp1
-rw-r--r--src/mongo/platform/atomic_word.h1
-rw-r--r--src/mongo/platform/atomic_word_test.cpp1
-rw-r--r--src/mongo/platform/basic.h3
-rw-r--r--src/mongo/platform/bits.h3
-rw-r--r--src/mongo/platform/bits_test.cpp3
-rw-r--r--src/mongo/platform/bitwise_enum_operators.h1
-rw-r--r--src/mongo/platform/compiler.h1
-rw-r--r--src/mongo/platform/compiler_gcc.h1
-rw-r--r--src/mongo/platform/compiler_msvc.h1
-rw-r--r--src/mongo/platform/decimal128.cpp1
-rw-r--r--src/mongo/platform/decimal128.h1
-rw-r--r--src/mongo/platform/decimal128_bson_test.cpp1
-rw-r--r--src/mongo/platform/decimal128_bson_test.h1
-rw-r--r--src/mongo/platform/decimal128_dummy.cpp1
-rw-r--r--src/mongo/platform/decimal128_test.cpp1
-rw-r--r--src/mongo/platform/endian.h1
-rw-r--r--src/mongo/platform/endian_test.cpp1
-rw-r--r--src/mongo/platform/overflow_arithmetic.h1
-rw-r--r--src/mongo/platform/overflow_arithmetic_test.cpp1
-rw-r--r--src/mongo/platform/pause.h1
-rw-r--r--src/mongo/platform/posix_fadvise.cpp1
-rw-r--r--src/mongo/platform/posix_fadvise.h1
-rw-r--r--src/mongo/platform/process_id.cpp1
-rw-r--r--src/mongo/platform/process_id.h1
-rw-r--r--src/mongo/platform/process_id_test.cpp1
-rw-r--r--src/mongo/platform/random.cpp3
-rw-r--r--src/mongo/platform/random.h3
-rw-r--r--src/mongo/platform/random_test.cpp3
-rw-r--r--src/mongo/platform/shared_library.cpp1
-rw-r--r--src/mongo/platform/shared_library.h1
-rw-r--r--src/mongo/platform/shared_library_posix.cpp1
-rw-r--r--src/mongo/platform/shared_library_windows.cpp1
-rw-r--r--src/mongo/platform/stack_locator.cpp1
-rw-r--r--src/mongo/platform/stack_locator.h1
-rw-r--r--src/mongo/platform/stack_locator_android.cpp1
-rw-r--r--src/mongo/platform/stack_locator_emscripten.cpp1
-rw-r--r--src/mongo/platform/stack_locator_freebsd.cpp1
-rw-r--r--src/mongo/platform/stack_locator_iOS-sim.cpp1
-rw-r--r--src/mongo/platform/stack_locator_iOS.cpp1
-rw-r--r--src/mongo/platform/stack_locator_linux.cpp1
-rw-r--r--src/mongo/platform/stack_locator_macOS.cpp1
-rw-r--r--src/mongo/platform/stack_locator_openbsd.cpp1
-rw-r--r--src/mongo/platform/stack_locator_osx.cpp1
-rw-r--r--src/mongo/platform/stack_locator_pthread_getattr_np.cpp1
-rw-r--r--src/mongo/platform/stack_locator_solaris.cpp1
-rw-r--r--src/mongo/platform/stack_locator_test.cpp1
-rw-r--r--src/mongo/platform/stack_locator_tvOS-sim.cpp1
-rw-r--r--src/mongo/platform/stack_locator_tvOS.cpp1
-rw-r--r--src/mongo/platform/stack_locator_unknown.cpp1
-rw-r--r--src/mongo/platform/stack_locator_watchOS-sim.cpp1
-rw-r--r--src/mongo/platform/stack_locator_watchOS.cpp1
-rw-r--r--src/mongo/platform/stack_locator_windows.cpp1
-rw-r--r--src/mongo/platform/strcasestr.cpp1
-rw-r--r--src/mongo/platform/strcasestr.h1
-rw-r--r--src/mongo/platform/strnlen.cpp1
-rw-r--r--src/mongo/platform/strnlen.h1
-rw-r--r--src/mongo/platform/strtoll.h1
-rw-r--r--src/mongo/platform/windows_basic.h3
60 files changed, 0 insertions, 74 deletions
diff --git a/src/mongo/platform/atomic_proxy.h b/src/mongo/platform/atomic_proxy.h
index 65023028803..70c367421ec 100644
--- a/src/mongo/platform/atomic_proxy.h
+++ b/src/mongo/platform/atomic_proxy.h
@@ -1,4 +1,3 @@
-
/**
* Copyright (C) 2018-present MongoDB, Inc.
*
diff --git a/src/mongo/platform/atomic_proxy_test.cpp b/src/mongo/platform/atomic_proxy_test.cpp
index b30f4c73e84..fce9a962cc3 100644
--- a/src/mongo/platform/atomic_proxy_test.cpp
+++ b/src/mongo/platform/atomic_proxy_test.cpp
@@ -1,4 +1,3 @@
-
/**
* Copyright (C) 2018-present MongoDB, Inc.
*
diff --git a/src/mongo/platform/atomic_word.h b/src/mongo/platform/atomic_word.h
index be65ae74ab6..8673b063f9b 100644
--- a/src/mongo/platform/atomic_word.h
+++ b/src/mongo/platform/atomic_word.h
@@ -1,4 +1,3 @@
-
/**
* Copyright (C) 2018-present MongoDB, Inc.
*
diff --git a/src/mongo/platform/atomic_word_test.cpp b/src/mongo/platform/atomic_word_test.cpp
index f097b995576..01449192821 100644
--- a/src/mongo/platform/atomic_word_test.cpp
+++ b/src/mongo/platform/atomic_word_test.cpp
@@ -1,4 +1,3 @@
-
/**
* Copyright (C) 2018-present MongoDB, Inc.
*
diff --git a/src/mongo/platform/basic.h b/src/mongo/platform/basic.h
index 7988e7da431..a9d729ecf11 100644
--- a/src/mongo/platform/basic.h
+++ b/src/mongo/platform/basic.h
@@ -1,6 +1,3 @@
-// basic.h
-
-
/**
* Copyright (C) 2018-present MongoDB, Inc.
*
diff --git a/src/mongo/platform/bits.h b/src/mongo/platform/bits.h
index 6eab282223a..721e7be9c92 100644
--- a/src/mongo/platform/bits.h
+++ b/src/mongo/platform/bits.h
@@ -1,6 +1,3 @@
-// bits.h
-
-
/**
* Copyright (C) 2018-present MongoDB, Inc.
*
diff --git a/src/mongo/platform/bits_test.cpp b/src/mongo/platform/bits_test.cpp
index 997b4f8a39f..bb8f014e051 100644
--- a/src/mongo/platform/bits_test.cpp
+++ b/src/mongo/platform/bits_test.cpp
@@ -1,6 +1,3 @@
-// bits_test.cpp
-
-
/**
* Copyright (C) 2018-present MongoDB, Inc.
*
diff --git a/src/mongo/platform/bitwise_enum_operators.h b/src/mongo/platform/bitwise_enum_operators.h
index 588535eb0f3..8950b93ce1c 100644
--- a/src/mongo/platform/bitwise_enum_operators.h
+++ b/src/mongo/platform/bitwise_enum_operators.h
@@ -1,4 +1,3 @@
-
/**
* Copyright (C) 2018-present MongoDB, Inc.
*
diff --git a/src/mongo/platform/compiler.h b/src/mongo/platform/compiler.h
index 71101f6f074..02e66713329 100644
--- a/src/mongo/platform/compiler.h
+++ b/src/mongo/platform/compiler.h
@@ -1,4 +1,3 @@
-
/**
* Copyright (C) 2018-present MongoDB, Inc.
*
diff --git a/src/mongo/platform/compiler_gcc.h b/src/mongo/platform/compiler_gcc.h
index f796aa85a28..bfb8cf7513c 100644
--- a/src/mongo/platform/compiler_gcc.h
+++ b/src/mongo/platform/compiler_gcc.h
@@ -1,4 +1,3 @@
-
/**
* Copyright (C) 2018-present MongoDB, Inc.
*
diff --git a/src/mongo/platform/compiler_msvc.h b/src/mongo/platform/compiler_msvc.h
index c4d42cfda03..c9f50eba68a 100644
--- a/src/mongo/platform/compiler_msvc.h
+++ b/src/mongo/platform/compiler_msvc.h
@@ -1,4 +1,3 @@
-
/**
* Copyright (C) 2018-present MongoDB, Inc.
*
diff --git a/src/mongo/platform/decimal128.cpp b/src/mongo/platform/decimal128.cpp
index 2a0f6b0c1ea..23b2fc0ff56 100644
--- a/src/mongo/platform/decimal128.cpp
+++ b/src/mongo/platform/decimal128.cpp
@@ -1,4 +1,3 @@
-
/**
* Copyright (C) 2018-present MongoDB, Inc.
*
diff --git a/src/mongo/platform/decimal128.h b/src/mongo/platform/decimal128.h
index 525d3fbf994..de7ccad2563 100644
--- a/src/mongo/platform/decimal128.h
+++ b/src/mongo/platform/decimal128.h
@@ -1,4 +1,3 @@
-
/**
* Copyright (C) 2018-present MongoDB, Inc.
*
diff --git a/src/mongo/platform/decimal128_bson_test.cpp b/src/mongo/platform/decimal128_bson_test.cpp
index 24bbef73836..9cfbeca8bdb 100644
--- a/src/mongo/platform/decimal128_bson_test.cpp
+++ b/src/mongo/platform/decimal128_bson_test.cpp
@@ -1,4 +1,3 @@
-
/**
* Copyright (C) 2018-present MongoDB, Inc.
*
diff --git a/src/mongo/platform/decimal128_bson_test.h b/src/mongo/platform/decimal128_bson_test.h
index a4c5c70f3ce..45e183df008 100644
--- a/src/mongo/platform/decimal128_bson_test.h
+++ b/src/mongo/platform/decimal128_bson_test.h
@@ -1,4 +1,3 @@
-
/**
* Copyright (C) 2018-present MongoDB, Inc.
*
diff --git a/src/mongo/platform/decimal128_dummy.cpp b/src/mongo/platform/decimal128_dummy.cpp
index 664c5e1a934..fe050eee655 100644
--- a/src/mongo/platform/decimal128_dummy.cpp
+++ b/src/mongo/platform/decimal128_dummy.cpp
@@ -1,4 +1,3 @@
-
/**
* Copyright (C) 2018-present MongoDB, Inc.
*
diff --git a/src/mongo/platform/decimal128_test.cpp b/src/mongo/platform/decimal128_test.cpp
index 760a3c79762..73b0f58d104 100644
--- a/src/mongo/platform/decimal128_test.cpp
+++ b/src/mongo/platform/decimal128_test.cpp
@@ -1,4 +1,3 @@
-
/**
* Copyright (C) 2018-present MongoDB, Inc.
*
diff --git a/src/mongo/platform/endian.h b/src/mongo/platform/endian.h
index 39d86a9ea45..4d367baf89b 100644
--- a/src/mongo/platform/endian.h
+++ b/src/mongo/platform/endian.h
@@ -1,4 +1,3 @@
-
/**
* Copyright (C) 2018-present MongoDB, Inc.
*
diff --git a/src/mongo/platform/endian_test.cpp b/src/mongo/platform/endian_test.cpp
index e7e79267c74..aaf6f61838b 100644
--- a/src/mongo/platform/endian_test.cpp
+++ b/src/mongo/platform/endian_test.cpp
@@ -1,4 +1,3 @@
-
/**
* Copyright (C) 2018-present MongoDB, Inc.
*
diff --git a/src/mongo/platform/overflow_arithmetic.h b/src/mongo/platform/overflow_arithmetic.h
index 0da859bb593..4b0bb3aeabe 100644
--- a/src/mongo/platform/overflow_arithmetic.h
+++ b/src/mongo/platform/overflow_arithmetic.h
@@ -1,4 +1,3 @@
-
/**
* Copyright (C) 2018-present MongoDB, Inc.
*
diff --git a/src/mongo/platform/overflow_arithmetic_test.cpp b/src/mongo/platform/overflow_arithmetic_test.cpp
index 24f91a5bf57..19571203e3c 100644
--- a/src/mongo/platform/overflow_arithmetic_test.cpp
+++ b/src/mongo/platform/overflow_arithmetic_test.cpp
@@ -1,4 +1,3 @@
-
/**
* Copyright (C) 2018-present MongoDB, Inc.
*
diff --git a/src/mongo/platform/pause.h b/src/mongo/platform/pause.h
index 313c03cef7d..6547658346e 100644
--- a/src/mongo/platform/pause.h
+++ b/src/mongo/platform/pause.h
@@ -1,4 +1,3 @@
-
/**
* Copyright (C) 2018-present MongoDB, Inc.
*
diff --git a/src/mongo/platform/posix_fadvise.cpp b/src/mongo/platform/posix_fadvise.cpp
index a59b958a9da..cd4ed2c9ddb 100644
--- a/src/mongo/platform/posix_fadvise.cpp
+++ b/src/mongo/platform/posix_fadvise.cpp
@@ -1,4 +1,3 @@
-
/**
* Copyright (C) 2018-present MongoDB, Inc.
*
diff --git a/src/mongo/platform/posix_fadvise.h b/src/mongo/platform/posix_fadvise.h
index b91ba931fcc..8942f06c67f 100644
--- a/src/mongo/platform/posix_fadvise.h
+++ b/src/mongo/platform/posix_fadvise.h
@@ -1,4 +1,3 @@
-
/**
* Copyright (C) 2018-present MongoDB, Inc.
*
diff --git a/src/mongo/platform/process_id.cpp b/src/mongo/platform/process_id.cpp
index d22db8a960d..48bc0354316 100644
--- a/src/mongo/platform/process_id.cpp
+++ b/src/mongo/platform/process_id.cpp
@@ -1,4 +1,3 @@
-
/**
* Copyright (C) 2018-present MongoDB, Inc.
*
diff --git a/src/mongo/platform/process_id.h b/src/mongo/platform/process_id.h
index f0cc3b62e73..2e9d1f721f7 100644
--- a/src/mongo/platform/process_id.h
+++ b/src/mongo/platform/process_id.h
@@ -1,4 +1,3 @@
-
/**
* Copyright (C) 2018-present MongoDB, Inc.
*
diff --git a/src/mongo/platform/process_id_test.cpp b/src/mongo/platform/process_id_test.cpp
index 28b1dd9828e..de81f389d62 100644
--- a/src/mongo/platform/process_id_test.cpp
+++ b/src/mongo/platform/process_id_test.cpp
@@ -1,4 +1,3 @@
-
/**
* Copyright (C) 2018-present MongoDB, Inc.
*
diff --git a/src/mongo/platform/random.cpp b/src/mongo/platform/random.cpp
index 5e6f9f81e51..ec46ce8c2cc 100644
--- a/src/mongo/platform/random.cpp
+++ b/src/mongo/platform/random.cpp
@@ -1,6 +1,3 @@
-// random.cpp
-
-
/**
* Copyright (C) 2018-present MongoDB, Inc.
*
diff --git a/src/mongo/platform/random.h b/src/mongo/platform/random.h
index 39e639351f7..6ef2a9bf114 100644
--- a/src/mongo/platform/random.h
+++ b/src/mongo/platform/random.h
@@ -1,6 +1,3 @@
-// random.h
-
-
/**
* Copyright (C) 2018-present MongoDB, Inc.
*
diff --git a/src/mongo/platform/random_test.cpp b/src/mongo/platform/random_test.cpp
index 9fdc318b266..f2d5353887e 100644
--- a/src/mongo/platform/random_test.cpp
+++ b/src/mongo/platform/random_test.cpp
@@ -1,6 +1,3 @@
-// random_test.cpp
-
-
/**
* Copyright (C) 2018-present MongoDB, Inc.
*
diff --git a/src/mongo/platform/shared_library.cpp b/src/mongo/platform/shared_library.cpp
index b791115ed34..eefd7635311 100644
--- a/src/mongo/platform/shared_library.cpp
+++ b/src/mongo/platform/shared_library.cpp
@@ -1,4 +1,3 @@
-
/**
* Copyright (C) 2018-present MongoDB, Inc.
*
diff --git a/src/mongo/platform/shared_library.h b/src/mongo/platform/shared_library.h
index a28da43247f..9aeeeadcad8 100644
--- a/src/mongo/platform/shared_library.h
+++ b/src/mongo/platform/shared_library.h
@@ -1,4 +1,3 @@
-
/**
* Copyright (C) 2018-present MongoDB, Inc.
*
diff --git a/src/mongo/platform/shared_library_posix.cpp b/src/mongo/platform/shared_library_posix.cpp
index 923838f9dd3..2dad1c2a4da 100644
--- a/src/mongo/platform/shared_library_posix.cpp
+++ b/src/mongo/platform/shared_library_posix.cpp
@@ -1,4 +1,3 @@
-
/**
* Copyright (C) 2018-present MongoDB, Inc.
*
diff --git a/src/mongo/platform/shared_library_windows.cpp b/src/mongo/platform/shared_library_windows.cpp
index f35c2d5eb45..ebaa37ad441 100644
--- a/src/mongo/platform/shared_library_windows.cpp
+++ b/src/mongo/platform/shared_library_windows.cpp
@@ -1,4 +1,3 @@
-
/**
* Copyright (C) 2018-present MongoDB, Inc.
*
diff --git a/src/mongo/platform/stack_locator.cpp b/src/mongo/platform/stack_locator.cpp
index 84d8530abe5..d29428a2def 100644
--- a/src/mongo/platform/stack_locator.cpp
+++ b/src/mongo/platform/stack_locator.cpp
@@ -1,4 +1,3 @@
-
/**
* Copyright (C) 2018-present MongoDB, Inc.
*
diff --git a/src/mongo/platform/stack_locator.h b/src/mongo/platform/stack_locator.h
index fd15eb5468c..37ee279aaa6 100644
--- a/src/mongo/platform/stack_locator.h
+++ b/src/mongo/platform/stack_locator.h
@@ -1,4 +1,3 @@
-
/**
* Copyright (C) 2018-present MongoDB, Inc.
*
diff --git a/src/mongo/platform/stack_locator_android.cpp b/src/mongo/platform/stack_locator_android.cpp
index 790eb06357b..0570a338ed2 100644
--- a/src/mongo/platform/stack_locator_android.cpp
+++ b/src/mongo/platform/stack_locator_android.cpp
@@ -1,4 +1,3 @@
-
/**
* Copyright (C) 2018-present MongoDB, Inc.
*
diff --git a/src/mongo/platform/stack_locator_emscripten.cpp b/src/mongo/platform/stack_locator_emscripten.cpp
index 790eb06357b..0570a338ed2 100644
--- a/src/mongo/platform/stack_locator_emscripten.cpp
+++ b/src/mongo/platform/stack_locator_emscripten.cpp
@@ -1,4 +1,3 @@
-
/**
* Copyright (C) 2018-present MongoDB, Inc.
*
diff --git a/src/mongo/platform/stack_locator_freebsd.cpp b/src/mongo/platform/stack_locator_freebsd.cpp
index beb1e805fcb..c595ddee056 100644
--- a/src/mongo/platform/stack_locator_freebsd.cpp
+++ b/src/mongo/platform/stack_locator_freebsd.cpp
@@ -1,4 +1,3 @@
-
/**
* Copyright (C) 2018-present MongoDB, Inc.
*
diff --git a/src/mongo/platform/stack_locator_iOS-sim.cpp b/src/mongo/platform/stack_locator_iOS-sim.cpp
index 3604e2f90ed..a99bbd567d4 100644
--- a/src/mongo/platform/stack_locator_iOS-sim.cpp
+++ b/src/mongo/platform/stack_locator_iOS-sim.cpp
@@ -1,4 +1,3 @@
-
/**
* Copyright (C) 2018-present MongoDB, Inc.
*
diff --git a/src/mongo/platform/stack_locator_iOS.cpp b/src/mongo/platform/stack_locator_iOS.cpp
index 3604e2f90ed..a99bbd567d4 100644
--- a/src/mongo/platform/stack_locator_iOS.cpp
+++ b/src/mongo/platform/stack_locator_iOS.cpp
@@ -1,4 +1,3 @@
-
/**
* Copyright (C) 2018-present MongoDB, Inc.
*
diff --git a/src/mongo/platform/stack_locator_linux.cpp b/src/mongo/platform/stack_locator_linux.cpp
index 790eb06357b..0570a338ed2 100644
--- a/src/mongo/platform/stack_locator_linux.cpp
+++ b/src/mongo/platform/stack_locator_linux.cpp
@@ -1,4 +1,3 @@
-
/**
* Copyright (C) 2018-present MongoDB, Inc.
*
diff --git a/src/mongo/platform/stack_locator_macOS.cpp b/src/mongo/platform/stack_locator_macOS.cpp
index 3604e2f90ed..a99bbd567d4 100644
--- a/src/mongo/platform/stack_locator_macOS.cpp
+++ b/src/mongo/platform/stack_locator_macOS.cpp
@@ -1,4 +1,3 @@
-
/**
* Copyright (C) 2018-present MongoDB, Inc.
*
diff --git a/src/mongo/platform/stack_locator_openbsd.cpp b/src/mongo/platform/stack_locator_openbsd.cpp
index 992b2cf295d..1dccb0e0a36 100644
--- a/src/mongo/platform/stack_locator_openbsd.cpp
+++ b/src/mongo/platform/stack_locator_openbsd.cpp
@@ -1,4 +1,3 @@
-
/**
* Copyright (C) 2018-present MongoDB, Inc.
*
diff --git a/src/mongo/platform/stack_locator_osx.cpp b/src/mongo/platform/stack_locator_osx.cpp
index 6348ee1aa8c..61cc6c931e0 100644
--- a/src/mongo/platform/stack_locator_osx.cpp
+++ b/src/mongo/platform/stack_locator_osx.cpp
@@ -1,4 +1,3 @@
-
/**
* Copyright (C) 2018-present MongoDB, Inc.
*
diff --git a/src/mongo/platform/stack_locator_pthread_getattr_np.cpp b/src/mongo/platform/stack_locator_pthread_getattr_np.cpp
index 72542b560d8..4f3044c50d6 100644
--- a/src/mongo/platform/stack_locator_pthread_getattr_np.cpp
+++ b/src/mongo/platform/stack_locator_pthread_getattr_np.cpp
@@ -1,4 +1,3 @@
-
/**
* Copyright (C) 2018-present MongoDB, Inc.
*
diff --git a/src/mongo/platform/stack_locator_solaris.cpp b/src/mongo/platform/stack_locator_solaris.cpp
index 5a2ae819871..2e025c0abdf 100644
--- a/src/mongo/platform/stack_locator_solaris.cpp
+++ b/src/mongo/platform/stack_locator_solaris.cpp
@@ -1,4 +1,3 @@
-
/**
* Copyright (C) 2018-present MongoDB, Inc.
*
diff --git a/src/mongo/platform/stack_locator_test.cpp b/src/mongo/platform/stack_locator_test.cpp
index 2ab2e50cefa..fea80fbb806 100644
--- a/src/mongo/platform/stack_locator_test.cpp
+++ b/src/mongo/platform/stack_locator_test.cpp
@@ -1,4 +1,3 @@
-
/**
* Copyright (C) 2018-present MongoDB, Inc.
*
diff --git a/src/mongo/platform/stack_locator_tvOS-sim.cpp b/src/mongo/platform/stack_locator_tvOS-sim.cpp
index 3604e2f90ed..a99bbd567d4 100644
--- a/src/mongo/platform/stack_locator_tvOS-sim.cpp
+++ b/src/mongo/platform/stack_locator_tvOS-sim.cpp
@@ -1,4 +1,3 @@
-
/**
* Copyright (C) 2018-present MongoDB, Inc.
*
diff --git a/src/mongo/platform/stack_locator_tvOS.cpp b/src/mongo/platform/stack_locator_tvOS.cpp
index 3604e2f90ed..a99bbd567d4 100644
--- a/src/mongo/platform/stack_locator_tvOS.cpp
+++ b/src/mongo/platform/stack_locator_tvOS.cpp
@@ -1,4 +1,3 @@
-
/**
* Copyright (C) 2018-present MongoDB, Inc.
*
diff --git a/src/mongo/platform/stack_locator_unknown.cpp b/src/mongo/platform/stack_locator_unknown.cpp
index e143b955295..630621802d6 100644
--- a/src/mongo/platform/stack_locator_unknown.cpp
+++ b/src/mongo/platform/stack_locator_unknown.cpp
@@ -1,4 +1,3 @@
-
/**
* Copyright (C) 2018-present MongoDB, Inc.
*
diff --git a/src/mongo/platform/stack_locator_watchOS-sim.cpp b/src/mongo/platform/stack_locator_watchOS-sim.cpp
index 3604e2f90ed..a99bbd567d4 100644
--- a/src/mongo/platform/stack_locator_watchOS-sim.cpp
+++ b/src/mongo/platform/stack_locator_watchOS-sim.cpp
@@ -1,4 +1,3 @@
-
/**
* Copyright (C) 2018-present MongoDB, Inc.
*
diff --git a/src/mongo/platform/stack_locator_watchOS.cpp b/src/mongo/platform/stack_locator_watchOS.cpp
index 3604e2f90ed..a99bbd567d4 100644
--- a/src/mongo/platform/stack_locator_watchOS.cpp
+++ b/src/mongo/platform/stack_locator_watchOS.cpp
@@ -1,4 +1,3 @@
-
/**
* Copyright (C) 2018-present MongoDB, Inc.
*
diff --git a/src/mongo/platform/stack_locator_windows.cpp b/src/mongo/platform/stack_locator_windows.cpp
index 21ef62bcf4b..d7d3c0290f1 100644
--- a/src/mongo/platform/stack_locator_windows.cpp
+++ b/src/mongo/platform/stack_locator_windows.cpp
@@ -1,4 +1,3 @@
-
/**
* Copyright (C) 2018-present MongoDB, Inc.
*
diff --git a/src/mongo/platform/strcasestr.cpp b/src/mongo/platform/strcasestr.cpp
index ccaffc102ce..eacf9fc0773 100644
--- a/src/mongo/platform/strcasestr.cpp
+++ b/src/mongo/platform/strcasestr.cpp
@@ -1,4 +1,3 @@
-
/**
* Copyright (C) 2018-present MongoDB, Inc.
*
diff --git a/src/mongo/platform/strcasestr.h b/src/mongo/platform/strcasestr.h
index 8c08ba56da5..1530520f1a2 100644
--- a/src/mongo/platform/strcasestr.h
+++ b/src/mongo/platform/strcasestr.h
@@ -1,4 +1,3 @@
-
/**
* Copyright (C) 2018-present MongoDB, Inc.
*
diff --git a/src/mongo/platform/strnlen.cpp b/src/mongo/platform/strnlen.cpp
index d7c5c399c32..755d76f335f 100644
--- a/src/mongo/platform/strnlen.cpp
+++ b/src/mongo/platform/strnlen.cpp
@@ -1,4 +1,3 @@
-
/**
* Copyright (C) 2018-present MongoDB, Inc.
*
diff --git a/src/mongo/platform/strnlen.h b/src/mongo/platform/strnlen.h
index dabe495d6ca..21e987f21b6 100644
--- a/src/mongo/platform/strnlen.h
+++ b/src/mongo/platform/strnlen.h
@@ -1,4 +1,3 @@
-
/**
* Copyright (C) 2018-present MongoDB, Inc.
*
diff --git a/src/mongo/platform/strtoll.h b/src/mongo/platform/strtoll.h
index cf7dd45a935..55564a70b21 100644
--- a/src/mongo/platform/strtoll.h
+++ b/src/mongo/platform/strtoll.h
@@ -1,4 +1,3 @@
-
/**
* Copyright (C) 2018-present MongoDB, Inc.
*
diff --git a/src/mongo/platform/windows_basic.h b/src/mongo/platform/windows_basic.h
index de3f517cd2b..95b12040c13 100644
--- a/src/mongo/platform/windows_basic.h
+++ b/src/mongo/platform/windows_basic.h
@@ -1,6 +1,3 @@
-// windows_basic.h
-
-
/**
* Copyright (C) 2018-present MongoDB, Inc.
*