GithubHelp home page GithubHelp logo

libusb-ada's People

Contributors

joelreymont avatar

Watchers

 avatar

libusb-ada's Issues

A quick review of `usb.ads`

use Ada.Containers;

A popular style is to put the use at the same line as the corresponding with.

(Device_Descriptor_Kind,

There's nothing wrong in repeating the type name in each enumeration value, but note that in Ada the identifier is not global; the same value could be repeated in another type and there wouldn't be a conflict. The repeated name can disambiguated when using it by context or explicitly by Type'(Value).

procedure Check_Error (Error_Code : Interfaces.C.int);

Are you sure this is needed in the private part of the specification? There are only two reasons to put something in the private part:

  • When it is required by the compiler as completion of something in the public part.
  • When you want to make something visible in the subsystem (child packages of this package), but not to external users of the package.
    You can leave it to the body, if it is only used there.

The indentation of broken lines looks too short to me, but that's a question of taste.

I only reviewed this specification, and the rest looks pretty good to me. Congratulations on your good progress learning Ada!

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    ๐Ÿ–– Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. ๐Ÿ“Š๐Ÿ“ˆ๐ŸŽ‰

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google โค๏ธ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.