Merge pull request #15 from elliottsj/indent-common-cc

Use 4-space indentation in common.cc
Esse commit está contido em:
Winnie
2016-05-31 12:36:45 -04:00
+19 -20
Ver Arquivo
@@ -1,27 +1,26 @@
namespace {
// Code to turn parameters to functions on streams into strings
// Will be VLOG'ed. We need overloads instead of
// e.g. BatchDescriptorToVlogString(), as the code that calls these
// function does not know what the type of the parameters is.
// Code to turn parameters to functions on streams into strings
// Will be VLOG'ed. We need overloads instead of
// e.g. BatchDescriptorToVlogString(), as the code that calls these
// function does not know what the type of the parameters is.
string ToVlogStrin(const dnn::BatchDescriptor &descriptor) {
return descriptor.ToShortString();
}
string ToVlogStrin(const dnn::BatchDescriptor &descriptor) {
return descriptor.ToShortString();
}
string ToVlogStrin(const dnn::FilterDescriptor &descriptor) {
return descriptor.ToShortString();
}
string ToVlogStrin(const dnn::FilterDescriptor &descriptor) {
return descriptor.ToShortString();
}
string ToVlogString(const magicalMovieClassifier::FilterDescriptor &descriptor) {
return descriptor.ToShortString();
}
string ToVlogString(const magicalMovieClassifier::FilterDescriptor &descriptor) {
return descriptor.ToShortString();
}
string ToVlogStrin(const dnn::PoolingDescriptor &descriptor) {
return descriptor.ToShortString();
}
string ToVlogStrin(const dnn::ConvolutionDescriptor &descriptor) {
return descriptor.ToShortString();
}
string ToVlogStrin(const dnn::PoolingDescriptor &descriptor) {
return descriptor.ToShortString();
}
string ToVlogStrin(const dnn::ConvolutionDescriptor &descriptor) {
return descriptor.ToShortString();
}
}