summaryrefslogtreecommitdiff
path: root/indra/llcommon
diff options
context:
space:
mode:
authorAndrew Meadows <andrew@lindenlab.com>2009-01-06 01:43:21 +0000
committerAndrew Meadows <andrew@lindenlab.com>2009-01-06 01:43:21 +0000
commit36645d1c52b2667d28c76f1aa8e2a0e60ad762bc (patch)
tree325f9761d0265297105378a3d2f76685342ab2b3 /indra/llcommon
parent667ca55bad0108c4bdf8f007b89e1a52fc766aad (diff)
Fix for etch build. Q and I both fixed LLDate by adding an operator!=() but we did it different ways so the two changes didn't cause a commit collision. I'm removing mine in favor of Q's.
Diffstat (limited to 'indra/llcommon')
-rw-r--r--indra/llcommon/lldate.cpp5
-rw-r--r--indra/llcommon/lldate.h3
2 files changed, 0 insertions, 8 deletions
diff --git a/indra/llcommon/lldate.cpp b/indra/llcommon/lldate.cpp
index ff1b6c5334..3e0b9e7864 100644
--- a/indra/llcommon/lldate.cpp
+++ b/indra/llcommon/lldate.cpp
@@ -237,11 +237,6 @@ void LLDate::secondsSinceEpoch(F64 seconds)
mSecondsSinceEpoch = seconds;
}
-bool operator!=(const LLDate& first, const LLDate& second)
-{
- return (first.secondsSinceEpoch() != second.secondsSinceEpoch());
-}
-
/* static */ LLDate LLDate::now()
{
// time() returns seconds, we want fractions of a second, which LLTimer provides --RN
diff --git a/indra/llcommon/lldate.h b/indra/llcommon/lldate.h
index b660f9fcdd..b853196f71 100644
--- a/indra/llcommon/lldate.h
+++ b/indra/llcommon/lldate.h
@@ -143,9 +143,6 @@ private:
F64 mSecondsSinceEpoch;
};
-// this operator required for tut
-bool operator!=(const LLDate& first, const LLDate& second);
-
// Helper function to stream out a date
std::ostream& operator<<(std::ostream& s, const LLDate& date);