Add comment.

This commit is contained in:
Tom Wilkie 2017-10-23 21:28:57 +01:00
parent ee011d906d
commit e8c264e47a

View File

@ -38,6 +38,7 @@ func (s *Storage) Add(l labels.Labels, t int64, v float64) (uint64, error) {
return 0, nil
}
// AddFast implements storage.Appender.
func (s *Storage) AddFast(l labels.Labels, _ uint64, t int64, v float64) error {
_, err := s.Add(l, t, v)
return err