Index: uspace/lib/cpp/include/__bits/typeinfo.hpp
===================================================================
--- uspace/lib/cpp/include/__bits/typeinfo.hpp	(revision 09553a0688dd595a61b5ca1b0336ac648708246c)
+++ uspace/lib/cpp/include/__bits/typeinfo.hpp	(revision 2e328c3f22289158f5d1889f4bacef60637d7da6)
@@ -34,25 +34,24 @@
 namespace std
 {
+    class type_info
+    {
+        public:
+            virtual ~type_info();
 
-class type_info
-{
-    public:
-        virtual ~type_info();
+            bool operator==(const type_info&) const noexcept;
+            bool operator!=(const type_info&) const noexcept;
 
-        bool operator==(const type_info&) const noexcept;
-        bool operator!=(const type_info&) const noexcept;
+            bool before(const type_info&) const noexcept;
 
-        bool before(const type_info&) const noexcept;
+            size_t hash_code() const noexcept;
 
-        size_t hash_code() const noexcept;
+            const char* name() const noexcept;
 
-        const char* name() const noexcept;
+            type_info(const type_info&) = delete;
+            type_info& operator=(const type_info&) = delete;
 
-        type_info(const type_info&) = delete;
-        type_info& operator=(const type_info&) = delete;
-
-    private:
-        const char* __name;
-};
+        private:
+            const char* __name;
+    };
 
     // TODO: class bad_cast, bad_typeid
