sapling/eden/fs/fuse/InodeNumber.cpp
Andres Suarez fbdb46f5cb Tidy up license headers
Reviewed By: chadaustin

Differential Revision: D17872966

fbshipit-source-id: cd60a364a2146f0dadbeca693b1d4a5d7c97ff63
2019-10-11 05:28:23 -07:00

30 lines
654 B
C++

/*
* Copyright (c) Facebook, Inc. and its affiliates.
*
* This software may be used and distributed according to the terms of the
* GNU General Public License version 2.
*/
#include "eden/fs/fuse/InodeNumber.h"
#include <folly/Conv.h>
#include <ostream>
namespace facebook {
namespace eden {
std::ostream& operator<<(std::ostream& os, InodeNumber ino) {
return os << ino.getRawValue();
}
void toAppend(InodeNumber ino, std::string* result) {
folly::toAppend(ino.getRawValue(), result);
}
void toAppend(InodeNumber ino, folly::fbstring* result) {
folly::toAppend(ino.getRawValue(), result);
}
} // namespace eden
} // namespace facebook