summaryrefslogtreecommitdiff
path: root/libs/pbd
diff options
context:
space:
mode:
Diffstat (limited to 'libs/pbd')
-rw-r--r--libs/pbd/pbd/pool.h2
-rw-r--r--libs/pbd/pbd/system_exec.h1
-rw-r--r--libs/pbd/pbd/uuid.h8
3 files changed, 0 insertions, 11 deletions
diff --git a/libs/pbd/pbd/pool.h b/libs/pbd/pbd/pool.h
index 165a3aac4b..a28325cebf 100644
--- a/libs/pbd/pbd/pool.h
+++ b/libs/pbd/pbd/pool.h
@@ -129,8 +129,6 @@ class LIBPBD_API PerThreadPool
private:
Glib::Threads::Private<CrossThreadPool> _key;
std::string _name;
- unsigned long _item_size;
- unsigned long _nitems;
/** mutex to protect either changes to the _trash variable, or writes to the RingBuffer */
Glib::Threads::Mutex _trash_mutex;
diff --git a/libs/pbd/pbd/system_exec.h b/libs/pbd/pbd/system_exec.h
index ce6e5a9c4f..b554bdca94 100644
--- a/libs/pbd/pbd/system_exec.h
+++ b/libs/pbd/pbd/system_exec.h
@@ -221,7 +221,6 @@ class LIBPBD_API SystemExec
void init ();
pthread_mutex_t write_lock;
- int fdin; ///< file-descriptor for writing to child's STDIN. This variable is identical to pin[1] but also used as status check if the stdin pipe is open: <0 means closed.
int pok[2];
int pin[2];
int pout[2];
diff --git a/libs/pbd/pbd/uuid.h b/libs/pbd/pbd/uuid.h
index 77e84c5f09..39817ade1a 100644
--- a/libs/pbd/pbd/uuid.h
+++ b/libs/pbd/pbd/uuid.h
@@ -41,14 +41,6 @@ class LIBPBD_API UUID : public boost::uuids::uuid {
: boost::uuids::uuid(u)
{}
- operator boost::uuids::uuid() {
- return static_cast<boost::uuids::uuid&>(*this);
- }
-
- operator boost::uuids::uuid() const {
- return static_cast<boost::uuids::uuid const&>(*this);
- }
-
UUID& operator= (std::string const & str);
std::string to_s () const;