summaryrefslogtreecommitdiffstatshomepage
path: root/src/osd/osdcore.h
diff options
context:
space:
mode:
Diffstat (limited to 'src/osd/osdcore.h')
-rw-r--r--src/osd/osdcore.h20
1 files changed, 10 insertions, 10 deletions
diff --git a/src/osd/osdcore.h b/src/osd/osdcore.h
index 141f3db55d9..a224fb7059c 100644
--- a/src/osd/osdcore.h
+++ b/src/osd/osdcore.h
@@ -319,21 +319,21 @@ namespace osd
OTHER
};
- const char * name; // name of the entry
- entry_type type; // type of the entry
- std::uint64_t size; // size of the entry
- std::chrono::system_clock::time_point last_modified; // last modified time
+ const char * name; // name of the entry
+ entry_type type; // type of the entry
+ std::uint64_t size; // size of the entry
+ std::chrono::system_clock::time_point last_modified; // last modified time
};
// -----------------------------------------------------------------------------
// osd::directory::open: open a directory for iteration
- //
+ //
// Parameters:
- //
+ //
// dirname - path to the directory in question
- //
+ //
// Return value:
- //
+ //
// upon success, this function should return an directory pointer
// which contains opaque data necessary to traverse the directory; on
// failure, this function should return nullptr
@@ -347,9 +347,9 @@ namespace osd
// -----------------------------------------------------------------------------
// osd::directory::read: return information about the next entry in the directory
- //
+ //
// Return value:
- //
+ //
// a constant pointer to an entry representing the current item
// in the directory, or nullptr, indicating that no more entries are
// present