13
0

Remove now unused ID::print method

This commit is contained in:
Tim Mayberry 2016-08-19 22:49:05 +10:00
parent fda05ac64b
commit f4f4c01f4c
2 changed files with 0 additions and 13 deletions

View File

@ -20,11 +20,6 @@
#include <ostream>
#include <stdio.h>
#ifndef __STDC_FORMAT_MACROS
#define __STDC_FORMAT_MACROS
#endif
#include <inttypes.h>
#include "pbd/id.h"
#include "pbd/string_convert.h"
@ -71,12 +66,6 @@ ID::string_assign (string str)
return string_to_uint64 (str, _id);
}
void
ID::print (char* buf, uint32_t bufsize) const
{
snprintf (buf, bufsize, "%" PRIu64, _id);
}
std::string
ID::to_s () const
{

View File

@ -55,8 +55,6 @@ class LIBPBD_API ID {
return _id < other._id;
}
void print (char* buf, uint32_t bufsize) const;
std::string to_s () const;
static uint64_t counter() { return _counter; }