From 75aadf050941d8acb89a3b0ec17a5d313553c087 Mon Sep 17 00:00:00 2001 From: Jeremy Siek Date: Mon, 25 Sep 2000 21:19:29 +0000 Subject: [PATCH] removed tabs [SVN r7835] --- include/boost/utility.hpp | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/include/boost/utility.hpp b/include/boost/utility.hpp index 90fd241..82a7d13 100644 --- a/include/boost/utility.hpp +++ b/include/boost/utility.hpp @@ -78,9 +78,9 @@ namespace boost inline tied(A& a, B& b) : _a(a), _b(b) { } template inline tied& operator=(const std::pair& p) { - _a = p.first; - _b = p.second; - return *this; + _a = p.first; + _b = p.second; + return *this; } protected: A& _a;