More unused code.
authorCarl Hetherington <carl@carlh.net>
Wed, 23 Nov 2011 19:30:08 +0000 (19:30 +0000)
committerCarl Hetherington <carl@carlh.net>
Wed, 23 Nov 2011 19:30:08 +0000 (19:30 +0000)
git-svn-id: svn://localhost/ardour2/branches/3.0@10807 d708f5d6-7413-0410-9779-e7cbd77b26cf

gtk2_ardour/vstfxwin.cc

index 6982be302111c4ea7d26ad7cabf81ff9566526c4..0687d06b718cf9978ddc5988acc5ececed7e41e8 100755 (executable)
@@ -757,15 +757,3 @@ vstfx_event_loop_remove_plugin (VSTState* vstfx)
        }
 }
 
-float
-htonf (float v)
-{
-      float result;
-      char * fin = (char*)&v;
-      char * fout = (char*)&result;
-      fout[0] = fin[3];
-      fout[1] = fin[2];
-      fout[2] = fin[1];
-      fout[3] = fin[0];
-      return result;
-}