]> granicus.if.org Git - taglib/commitdiff
CVS_SILENT this comment belongs here now
authorScott Wheeler <wheeler@kde.org>
Thu, 28 Oct 2004 22:20:00 +0000 (22:20 +0000)
committerScott Wheeler <wheeler@kde.org>
Thu, 28 Oct 2004 22:20:00 +0000 (22:20 +0000)
git-svn-id: svn://anonsvn.kde.org/home/kde/trunk/kdesupport/taglib@358639 283d02a7-25f6-0310-bc7c-ecb5cbfe19da

toolkit/tbytevector.cpp

index 8bd90615f79e714759cd5ce14210379a63535eca..de4ca6f9f7030c69c51b6bd8635f9eddbac72ccb 100644 (file)
 
 // This is a bit ugly to keep writing over and over again.
 
+// A rather obscure feature of the C++ spec that I hadn't thought of that makes
+// working with C libs much more effecient.  There's more here:
+//
+// http://www.informit.com/isapi/product_id~{9C84DAB4-FE6E-49C5-BB0A-FB50331233EA}/content/index.asp
+
 #define DATA(x) (&(x->data[0]))
 
 namespace TagLib {
@@ -326,11 +331,6 @@ void ByteVector::setData(const char *data)
 
 char *ByteVector::data()
 {
-  // A rather obscure feature of the C++ spec that I hadn't thought of that makes
-  // working with C libs much more effecient.  There's more here:
-  //
-  // http://www.informit.com/isapi/product_id~{9C84DAB4-FE6E-49C5-BB0A-FB50331233EA}/content/index.asp
-
   detach();
   return DATA(d);
 }