removed tabs

[SVN r7835]
This commit is contained in:
Jeremy Siek 2000-09-25 21:19:29 +00:00
parent 4f9b0bcb9b
commit 75aadf0509

View File

@ -78,9 +78,9 @@ namespace boost
inline tied(A& a, B& b) : _a(a), _b(b) { }
template <class U, class V>
inline tied& operator=(const std::pair<U,V>& p) {
_a = p.first;
_b = p.second;
return *this;
_a = p.first;
_b = p.second;
return *this;
}
protected:
A& _a;