summaryrefslogtreecommitdiff
path: root/deps/icu-small/source/common/parsepos.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'deps/icu-small/source/common/parsepos.cpp')
-rw-r--r--deps/icu-small/source/common/parsepos.cpp21
1 files changed, 21 insertions, 0 deletions
diff --git a/deps/icu-small/source/common/parsepos.cpp b/deps/icu-small/source/common/parsepos.cpp
new file mode 100644
index 0000000000..26f8820512
--- /dev/null
+++ b/deps/icu-small/source/common/parsepos.cpp
@@ -0,0 +1,21 @@
+/*
+**********************************************************************
+* Copyright (C) 2003-2003, International Business Machines
+* Corporation and others. All Rights Reserved.
+**********************************************************************
+*/
+
+#include "unicode/parsepos.h"
+
+U_NAMESPACE_BEGIN
+
+UOBJECT_DEFINE_RTTI_IMPLEMENTATION(ParsePosition)
+
+ParsePosition::~ParsePosition() {}
+
+ParsePosition *
+ParsePosition::clone() const {
+ return new ParsePosition(*this);
+}
+
+U_NAMESPACE_END