mirror of
https://github.com/trapexit/mergerfs.git
synced 2025-03-01 06:17:39 +08:00
18 lines
235 B
C++
18 lines
235 B
C++
#include "branches2.hpp"
|
|
|
|
#include <iostream>
|
|
|
|
Branches2::Branches2()
|
|
{
|
|
|
|
}
|
|
|
|
Branches2::Branches2(toml::value const &v_)
|
|
{
|
|
auto const &branches = toml::find(v_,"branch");
|
|
|
|
for(auto const &branch : branches.as_array())
|
|
{
|
|
}
|
|
}
|