aboutsummaryrefslogtreecommitdiff
path: root/test/googletest/include/gtest/internal/gtest-linked_ptr.h
diff options
context:
space:
mode:
authorEven Rouault <even.rouault@spatialys.com>2019-03-24 20:45:54 +0100
committerEven Rouault <even.rouault@spatialys.com>2019-03-24 20:45:54 +0100
commit0afadbf9629345d571409c2ea3c25a6cd9cce14e (patch)
treead22e3659a33c951f3ba3f5533c3ac657270eec6 /test/googletest/include/gtest/internal/gtest-linked_ptr.h
parent3e37b354194b4d42acd247c32ca97e45ac40af1e (diff)
downloadPROJ-0afadbf9629345d571409c2ea3c25a6cd9cce14e.tar.gz
PROJ-0afadbf9629345d571409c2ea3c25a6cd9cce14e.zip
Update internal version of googletest to v1.8.1
This is already what is used by cmake builds
Diffstat (limited to 'test/googletest/include/gtest/internal/gtest-linked_ptr.h')
-rw-r--r--test/googletest/include/gtest/internal/gtest-linked_ptr.h6
1 files changed, 3 insertions, 3 deletions
diff --git a/test/googletest/include/gtest/internal/gtest-linked_ptr.h b/test/googletest/include/gtest/internal/gtest-linked_ptr.h
index 36029422..082b8728 100644
--- a/test/googletest/include/gtest/internal/gtest-linked_ptr.h
+++ b/test/googletest/include/gtest/internal/gtest-linked_ptr.h
@@ -27,8 +27,6 @@
// (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE
// OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
//
-// Authors: Dan Egnor (egnor@google.com)
-//
// A "smart" pointer type with reference tracking. Every pointer to a
// particular object is kept on a circular linked list. When the last pointer
// to an object is destroyed or reassigned, the object is deleted.
@@ -62,9 +60,11 @@
// raw pointer (e.g. via get()) concurrently, and
// - it's safe to write to two linked_ptrs that point to the same
// shared object concurrently.
-// TODO(wan@google.com): rename this to safe_linked_ptr to avoid
+// FIXME: rename this to safe_linked_ptr to avoid
// confusion with normal linked_ptr.
+// GOOGLETEST_CM0001 DO NOT DELETE
+
#ifndef GTEST_INCLUDE_GTEST_INTERNAL_GTEST_LINKED_PTR_H_
#define GTEST_INCLUDE_GTEST_INTERNAL_GTEST_LINKED_PTR_H_