aboutsummaryrefslogtreecommitdiffhomepage
path: root/tensorflow/core/lib/strings/strcat.h
diff options
context:
space:
mode:
authorGravatar A. Unique TensorFlower <gardener@tensorflow.org>2018-03-21 13:08:02 -0700
committerGravatar TensorFlower Gardener <gardener@tensorflow.org>2018-03-21 13:10:39 -0700
commit6741f81b8216862a83703122191a8632fda333a2 (patch)
treef5a89ad417cfe7751c25578fe4815510527d3708 /tensorflow/core/lib/strings/strcat.h
parenta6a7de3d36a154e4382283a804531f148fca6c9b (diff)
Make strcat.{h,cc} independent of Eigen.
PiperOrigin-RevId: 189954596
Diffstat (limited to 'tensorflow/core/lib/strings/strcat.h')
-rw-r--r--tensorflow/core/lib/strings/strcat.h5
1 files changed, 0 insertions, 5 deletions
diff --git a/tensorflow/core/lib/strings/strcat.h b/tensorflow/core/lib/strings/strcat.h
index b681f7398d..b3ec14e448 100644
--- a/tensorflow/core/lib/strings/strcat.h
+++ b/tensorflow/core/lib/strings/strcat.h
@@ -27,10 +27,6 @@ limitations under the License.
#include "tensorflow/core/platform/macros.h"
#include "tensorflow/core/platform/types.h"
-namespace Eigen {
-struct half;
-}
-
// The AlphaNum type was designed to be used as the parameter type for StrCat().
// Any routine accepting either a string or a number may accept it.
// The basic idea is that by accepting a "const AlphaNum &" as an argument
@@ -122,7 +118,6 @@ class AlphaNum {
AlphaNum(double f) // NOLINT(runtime/explicit)
: piece_(digits_, strlen(DoubleToBuffer(f, digits_))) {}
- AlphaNum(const Eigen::half &f); // NOLINT(runtime/explicit)
AlphaNum(Hex hex); // NOLINT(runtime/explicit)
AlphaNum(const char *c_str) : piece_(c_str) {} // NOLINT(runtime/explicit)