mirror of
https://github.com/Ardour/ardour.git
synced 2025-12-16 03:36:32 +01:00
Remove now unused ID::print method
This commit is contained in:
parent
fda05ac64b
commit
f4f4c01f4c
2 changed files with 0 additions and 13 deletions
|
|
@ -20,11 +20,6 @@
|
||||||
#include <ostream>
|
#include <ostream>
|
||||||
#include <stdio.h>
|
#include <stdio.h>
|
||||||
|
|
||||||
#ifndef __STDC_FORMAT_MACROS
|
|
||||||
#define __STDC_FORMAT_MACROS
|
|
||||||
#endif
|
|
||||||
#include <inttypes.h>
|
|
||||||
|
|
||||||
#include "pbd/id.h"
|
#include "pbd/id.h"
|
||||||
#include "pbd/string_convert.h"
|
#include "pbd/string_convert.h"
|
||||||
|
|
||||||
|
|
@ -71,12 +66,6 @@ ID::string_assign (string str)
|
||||||
return string_to_uint64 (str, _id);
|
return string_to_uint64 (str, _id);
|
||||||
}
|
}
|
||||||
|
|
||||||
void
|
|
||||||
ID::print (char* buf, uint32_t bufsize) const
|
|
||||||
{
|
|
||||||
snprintf (buf, bufsize, "%" PRIu64, _id);
|
|
||||||
}
|
|
||||||
|
|
||||||
std::string
|
std::string
|
||||||
ID::to_s () const
|
ID::to_s () const
|
||||||
{
|
{
|
||||||
|
|
|
||||||
|
|
@ -55,8 +55,6 @@ class LIBPBD_API ID {
|
||||||
return _id < other._id;
|
return _id < other._id;
|
||||||
}
|
}
|
||||||
|
|
||||||
void print (char* buf, uint32_t bufsize) const;
|
|
||||||
|
|
||||||
std::string to_s () const;
|
std::string to_s () const;
|
||||||
|
|
||||||
static uint64_t counter() { return _counter; }
|
static uint64_t counter() { return _counter; }
|
||||||
|
|
|
||||||
Loading…
Add table
Add a link
Reference in a new issue