From 41b4e0a61c7beed20456be7cefe259603d680731 Mon Sep 17 00:00:00 2001 From: Carl Hetherington Date: Wed, 23 Nov 2011 19:30:08 +0000 Subject: [PATCH] More unused code. git-svn-id: svn://localhost/ardour2/branches/3.0@10807 d708f5d6-7413-0410-9779-e7cbd77b26cf --- gtk2_ardour/vstfxwin.cc | 12 ------------ 1 file changed, 12 deletions(-) diff --git a/gtk2_ardour/vstfxwin.cc b/gtk2_ardour/vstfxwin.cc index 6982be3021..0687d06b71 100755 --- a/gtk2_ardour/vstfxwin.cc +++ b/gtk2_ardour/vstfxwin.cc @@ -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; -}