summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorCarl Hetherington <carl@carlh.net>2011-11-23 19:30:08 +0000
committerCarl Hetherington <carl@carlh.net>2011-11-23 19:30:08 +0000
commit41b4e0a61c7beed20456be7cefe259603d680731 (patch)
tree966c90ee1b2065b1e381af1706806ec413218c50
parent45cc96f9d10d670d56d8ff0b74a753251ac5ff22 (diff)
More unused code.
git-svn-id: svn://localhost/ardour2/branches/3.0@10807 d708f5d6-7413-0410-9779-e7cbd77b26cf
-rwxr-xr-xgtk2_ardour/vstfxwin.cc12
1 files changed, 0 insertions, 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;
-}