File: cursor-to-reader.cpp

package info (click to toggle)
lager 0.1.1-3
  • links: PTS, VCS
  • area: main
  • in suites: forky, sid
  • size: 2,888 kB
  • sloc: cpp: 10,602; javascript: 10,433; makefile: 214; python: 100; sh: 98
file content (16 lines) | stat: -rw-r--r-- 267 bytes parent folder | download | duplicates (2)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
// clang-format off
#include <lager/cursor.hpp>
#include <lager/reader.hpp>

#include <string>

int main()
{
    lager::cursor<int> a{};

    lager::reader<int> int_reader = a; // happy path  

    lager::reader<std::string> b = a; // offending line

    return 0;
}