]> git.llucax.com Git - software/posixx.git/commitdiff
Fix indentation
authorLeandro Lucarella <llucarella@integratech.com.ar>
Thu, 6 Nov 2008 21:50:06 +0000 (19:50 -0200)
committerLeandro Lucarella <llucarella@integratech.com.ar>
Thu, 6 Nov 2008 21:50:06 +0000 (19:50 -0200)
Don't use spaces for indentation, use tabs instead.

src/basic_buffer.hpp
src/error.hpp
src/socket/basic_socket.hpp
test/Makefile

index 494043fa86e33b0fadfa77e66e4d2c95b87b79ae..8180db8aeb5a5e072b50cf766cd39e8fa73ebb83 100644 (file)
@@ -403,7 +403,7 @@ struct basic_buffer {
        }
 
        /**
-        * Efficiently swaps the contents of x and y.
+        * Efficiently swaps the contents of x and y.
         *
         * Invalidates all references and iterators.
         */
index 89ac57609a32b8b256d911350bfdd2e835d87823..acea4221f11fcab09eae6f37a0ccedab2a48a7e8 100644 (file)
@@ -37,13 +37,13 @@ struct error: std::runtime_error
 
 inline
 posixx::error::error() throw():
-    std::runtime_error(strerror(errno)), no(errno)
+               std::runtime_error(strerror(errno)), no(errno)
 {
 }
 
 inline
 posixx::error::error(const std::string& where) throw ():
-    std::runtime_error(where + ": " + strerror(errno)), no(errno)
+               std::runtime_error(where + ": " + strerror(errno)), no(errno)
 {
 }
 
index 3f6f779b4d1965d816f61adee39c5eb14b9d484c..9135f5278fafd87697869457a98650c922fac63a 100644 (file)
@@ -600,30 +600,30 @@ ssize_t posixx::socket::basic_socket< TSockTraits >::recv(void* buf, size_t n,
 }
 
 /*
-   template< typename TSockTraits >
-   inline
-   ssize_t posixx::socket::basic_socket< TSockTraits >::send(const msghdr* msg, int flags)
-   {
-   ssize_t s = ::sendmsg(_fd, msg, flags);
-   if (s == -1)
-   throw error("sendmsg");
-   if (s == 0)
-   throw error("send");
-   return s;
-   }
-
-   template< typename TSockTraits >
-   inline
-   ssize_t posixx::socket::basic_socket< TSockTraits >::recv(struct msghdr* msg, int flags)
-   {
-   ssize_t s = ::recvmsg(_fd, msg, flags);
-   if (s == -1)
-   throw error("recvmsg");
-   if (s == 0)
-   throw error("send");
-   return s;
-   }
- */
+template< typename TSockTraits >
+inline
+ssize_t posixx::socket::basic_socket< TSockTraits >::send(const msghdr* msg, int flags)
+{
+       ssize_t s = ::sendmsg(_fd, msg, flags);
+       if (s == -1)
+               throw error("sendmsg");
+       if (s == 0)
+               throw error("send");
+       return s;
+}
+
+template< typename TSockTraits >
+inline
+ssize_t posixx::socket::basic_socket< TSockTraits >::recv(struct msghdr* msg, int flags)
+{
+       ssize_t s = ::recvmsg(_fd, msg, flags);
+       if (s == -1)
+               throw error("recvmsg");
+       if (s == 0)
+               throw error("send");
+       return s;
+}
+*/
 
 template< typename TSockTraits >
 template< typename TSockOpt >
index c6f2a22900ce0f61ea3f98c8069de332acfa3630..9e9ad9fce66ae6593cfeafde2793964ceb4feba4 100644 (file)
@@ -4,8 +4,8 @@ LOCAL_LDFLAGS = -lboost_unit_test_framework
 
 TESTPRG = test_suite
 TESTCMD = ./$(TESTPRG) --detect_memory_leak=1 --report_level=short \
-#              --build_info=yes --log_level=test_suite \
-#              | grep -v "Entering test case " | grep -v "Leaving test case"
+               #--build_info=yes --log_level=test_suite \
+               #| grep -v "Entering test case " | grep -v "Leaving test case"
 
 VALGRIND = valgrind --tool=memcheck --leak-check=yes --db-attach=no \
                --num-callers=24 --leak-resolution=high --track-fds=yes \